refactor: seperate kubernetes

This commit is contained in:
Glen Goodwin 2023-11-11 00:16:03 -05:00
parent 0c3d194875
commit 38a79170f7
3 changed files with 15 additions and 10 deletions

View file

@ -0,0 +1,30 @@
{
config,
pkgs,
user,
...
}: {
virtualisation = {
docker.enable = true;
};
users.groups.docker.members = ["${user}"];
#environment = {
# interactiveShellInit = ''
# alias rtmp='docker start nginx-rtmp'
# ''; # Alias to easily start container
#};
environment.systemPackages = with pkgs; [
argocd
k3d
k9s
kind
kubectl
kubectx
kubernetes-helm
minikube
stern
];
}