fab-city-os-core-chart/flake.nix
Sebastian Wendel b31f238059
Initial commit
2022-05-17 14:38:47 +02:00

31 lines
659 B
Nix

{
description = "fc k8s runtime flake";
inputs = {
nixpkgs = {
url = "github:NixOS/nixpkgs/nixos-unstable-small";
};
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
utils.url = "github:numtide/flake-utils";
ragenix = {
url = "github:yaxitech/ragenix";
inputs.flake-utils.follows = "utils";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, utils, ... }@inputs:
utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
devShell = import ./shell.nix { inherit pkgs; };
}
);
}