16 lines
280 B
Nix
16 lines
280 B
Nix
{
|
|
machines.jefke = {
|
|
arch = "x86_64-linux";
|
|
kubernetesNodeLabels.storageType = "fast";
|
|
|
|
nixosModule.lab = {
|
|
storage.profile = "kubernetes";
|
|
tailscale.enable = true;
|
|
|
|
k3s = {
|
|
enable = true;
|
|
clusterInit = true;
|
|
};
|
|
};
|
|
};
|
|
}
|