summaryrefslogtreecommitdiff
path: root/hosts/cloud/hardware-configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/cloud/hardware-configuration.nix')
-rw-r--r--hosts/cloud/hardware-configuration.nix14
1 files changed, 11 insertions, 3 deletions
diff --git a/hosts/cloud/hardware-configuration.nix b/hosts/cloud/hardware-configuration.nix
index 5e7b44e..bd94495 100644
--- a/hosts/cloud/hardware-configuration.nix
+++ b/hosts/cloud/hardware-configuration.nix
@@ -2,8 +2,16 @@
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.loader.grub.device = "/dev/sda";
- boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ];
+ boot.initrd.availableKernelModules = [
+ "ata_piix"
+ "uhci_hcd"
+ "xen_blkfront"
+ "vmw_pvscsi"
+ ];
boot.initrd.kernelModules = [ "nvme" ];
- fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; };
-
+ fileSystems."/" = {
+ device = "/dev/sda1";
+ fsType = "ext4";
+ };
+
}