From cdbd9f7f83099a48bfa59a886b6e51790d898a24 Mon Sep 17 00:00:00 2001 From: ene Date: Sat, 4 Feb 2023 21:37:52 +0100 Subject: Flake: Changed the configuration to a flake Nix flakes make a lot of things very easy. --- system/hardware.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 system/hardware.nix (limited to 'system/hardware.nix') diff --git a/system/hardware.nix b/system/hardware.nix new file mode 100644 index 0000000..c4c7dc9 --- /dev/null +++ b/system/hardware.nix @@ -0,0 +1,9 @@ +{modulesPath, ...}: { + imports = [ + (modulesPath + "/profiles/qemu-guest.nix") + (modulesPath + "/profiles/headless.nix") + ]; + boot.loader.grub.device = "/dev/vda"; + boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi"]; + boot.initrd.kernelModules = ["nvme" "btrfs"]; +} -- cgit 1.4.1