This commit is contained in:
2026-02-23 00:52:39 +01:00
parent 5b19dec3c3
commit 3b6f4c7f28
6 changed files with 265 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{
lib,
modulesPath,
...
}:
{
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
fileSystems."/" = {
device = "/dev/disk/by-label/nixos";
autoResize = true;
fsType = "ext4";
};
boot.loader.grub.device = lib.mkDefault "/dev/vda";
}