17 lines
299 B
Nix
17 lines
299 B
Nix
|
{
|
||
|
machines.atlas = {
|
||
|
arch = "x86_64-linux";
|
||
|
kubernetesNodeLabels.storageType = "slow";
|
||
|
|
||
|
nixosModule.lab = {
|
||
|
storage.profile = "kubernetes";
|
||
|
tailscale.enable = true;
|
||
|
|
||
|
k3s = {
|
||
|
enable = true;
|
||
|
serverAddr = "https://jefke.dmz:6443";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|