pinwheel: Add module for k8s related software
This commit is contained in:
@@ -32,6 +32,7 @@
|
||||
./modules/nix
|
||||
./modules/spotify
|
||||
./modules/podman
|
||||
./modules/k8s
|
||||
];
|
||||
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
10
hosts/pinwheel/modules/k8s/default.nix
Normal file
10
hosts/pinwheel/modules/k8s/default.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home-manager.users.alex = {
|
||||
home.packages = [
|
||||
pkgs.kubectl
|
||||
pkgs.kubernetes-helm
|
||||
pkgs.kind
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user