summary refs log tree commit diff stats
path: root/system/hardware
diff options
context:
space:
mode:
Diffstat (limited to 'system/hardware')
-rw-r--r--system/hardware/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/system/hardware/default.nix b/system/hardware/default.nix
new file mode 100644
index 0000000..c4c7dc9
--- /dev/null
+++ b/system/hardware/default.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"];
+}