inaugurate decent devshell

This commit is contained in:
David Arnold 2021-04-29 17:13:33 -05:00
parent be58b0e94e
commit 2026496ea0
No known key found for this signature in database
GPG key ID: 6D6A936E69C59D08
7 changed files with 313 additions and 4 deletions

View file

@ -21,10 +21,7 @@
};
in
rec {
devShell = with pkgs; mkShell {
buildInputs = [
];
};
devShell = import ./shell.nix { inherit system pkgs; };
packages = flake-utils.lib.flattenTree {
inherit (pkgs)
@ -43,6 +40,9 @@
kubenix = prev.callPackage ./default.nix {
nixosPath = "${nixpkgs}/nixos";
};
# up to date versions of their nixpkgs equivalents
kubernetes = prev.callPackage ./pkgs/applications/networking/cluster/kubernetes { };
kubectl = prev.callPackage ./pkgs/applications/networking/cluster/kubectl { };
};
};
}