rke2 base config

This commit is contained in:
2025-01-25 11:50:54 -05:00
parent 0dd32db094
commit 1f91305b6e
3 changed files with 145 additions and 2 deletions

View File

@@ -8,6 +8,7 @@
outputs = { self, nixpkgs, disko }: {
nixosConfigurations.lin-va-llama1 = nixpkgs.lib.nixosSystem {
# LLaMA C++ Server
system = "x86_64-linux";
modules = [
disko.nixosModules.disko
@@ -18,6 +19,7 @@
];
};
# K3s Server
nixosConfigurations.lin-va-k3s1 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
@@ -28,5 +30,17 @@
}
];
};
# RKE2 Server
nixosConfigurations.lin-va-rke1 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
disko.nixosModules.disko
./hosts/rke2.nix
{
networking.hostName = "lin-va-rke1";
}
];
};
};
}