This commit is contained in:
XenGi 2025-12-11 19:28:46 +01:00
parent 9277a9d88e
commit 9bf0574d1d
Signed by: xengi
SSH key fingerprint: SHA256:jxWM2RTHvxxcncXycwwWkP7HCWb4VREN05UGJTbIPZg
2 changed files with 14 additions and 1 deletions

View file

@ -40,7 +40,7 @@
];
};
# Dell R630
nixosConfigurations."k8s" = nixpkgs.lib.nixosSystem {
nixosConfigurations."kaede" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
agenix.nixosModules.default

13
hosts/kaede/default.nix Normal file
View file

@ -0,0 +1,13 @@
{ ... }:
{
virtualisation = {
useEFIBoot = true;
libvirtd = {
enable = true;
};
rootDevice = "/dev/disk/by-label/nixos";
mountHostNixStore = true;
};
}