nix-config/hosts/cloud/hardware-configuration.nix

18 lines
355 B
Nix
Raw Normal View History

2025-01-02 18:23:46 +00:00
{ modulesPath, ... }:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.loader.grub.device = "/dev/sda";
2025-01-11 03:55:19 +01:00
boot.initrd.availableKernelModules = [
"ata_piix"
"uhci_hcd"
"xen_blkfront"
"vmw_pvscsi"
];
2025-01-02 18:23:46 +00:00
boot.initrd.kernelModules = [ "nvme" ];
2025-01-11 03:55:19 +01:00
fileSystems."/" = {
device = "/dev/sda1";
fsType = "ext4";
};
2025-01-02 18:23:46 +00:00
}