this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

setup docker / kvm2 for minikube usage

+7
+7
hosts/profiles/kuberenetes/default.nix
··· 5 5 networking.firewall.allowedTCPPorts = [ 6443 ]; 6 6 services.k3s.enable = true; 7 7 services.k3s.role = "server"; 8 + services.k3s.clusterInit = true; 8 9 # services.k3s.extraFlags = toString [ 9 10 # "--kubelet-arg=v=4" # Optionally add additional args to k3s 10 11 # ]; 11 12 environment.systemPackages = [ pkgs.k3s pkgs.kubernetes-helm ]; 12 13 14 + # minikube on docker 15 + virtualisation.docker.enable = true; 16 + virtualisation.docker.storageDriver = "btrfs"; 17 + # or use kvm 18 + virtualisation.libvert.enable = true; 19 + users.users.anish.extraGroups = [ "libvert" "docker" ]; 13 20 }