nixos-servers/machines/jefke.nix
Pim Kunis afa0bd023e Add option to add labels to Kubernetes nodes
Make nextcloud always go to nodes with fast storage
Don't mount nextcloud on syncthing pod
2024-05-24 23:40:19 +02:00

17 lines
269 B
Nix

{
machines.jefke = {
arch = "x86_64-linux";
kubernetesNodeLabels.storageType = "fast";
nixosModule.lab = {
storage = {
kubernetesNode = true;
};
k3s = {
enable = true;
clusterInit = true;
};
};
};
}