Fix Isaiah to actually work

This commit is contained in:
Greg Hellings
2025-05-19 21:47:35 -05:00
parent 6a297a4fc4
commit b70c7874cc
3 changed files with 12 additions and 10 deletions
+7
View File
@@ -29,8 +29,15 @@ in
extraFlags = [
"--cluster-cidr=10.211.0.0/16"
"--service-cidr=10.221.0.0/16"
"--write-kubeconfig-mode 0640"
"--write-kubeconfig-group kubeconfig"
];
serverAddr = lib.mkIf (config.networking.hostName != "isaiah") "https://isaiah.home:6443";
};
users = {
groups.kubeconfig = { };
users.greg.extraGroups = [ "kubeconfig" ];
};
};
}