Files
matej.nix/hosts/sandbox/hardware-configuration.nix
2026-02-23 00:52:39 +01:00

19 lines
271 B
Nix

{
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";
}