nixos-servers/machines/jefke.nix

16 lines
249 B
Nix
Raw Normal View History

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