17 lines
280 B
Nix
17 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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|