16 lines
222 B
Nix
16 lines
222 B
Nix
{
|
|
machines.jefke = {
|
|
arch = "x86_64-linux";
|
|
|
|
nixosModule.lab = {
|
|
storage = {
|
|
kubernetesNode = true;
|
|
};
|
|
|
|
k3s = {
|
|
enable = true;
|
|
clusterInit = true;
|
|
};
|
|
};
|
|
};
|
|
}
|