flocon/hosts/anastacia/hardware-configuration.nix

13 lines
335 B
Nix
Raw Permalink Normal View History

{modulesPath, ...}: {
imports = [(modulesPath + "/profiles/qemu-guest.nix")];
2024-11-06 15:49:58 +00:00
boot = {
loader.grub.device = "/dev/sda";
initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi"];
initrd.kernelModules = ["nvme"];
};
fileSystems."/" = {
device = "/dev/sda1";
fsType = "ext4";
};
}