diff --git a/nixos/newton/hardware-configuration.nix b/nixos/newton/hardware-configuration.nix index 14f6cc5..62869a1 100644 --- a/nixos/newton/hardware-configuration.nix +++ b/nixos/newton/hardware-configuration.nix @@ -2,8 +2,16 @@ { imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; - boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" ]; - boot.initrd.kernelModules = [ "dm-snapshot" ]; + boot.initrd.availableKernelModules = [ + "ata_piix" + "sd_mod" + "uhci_hcd" + "virtio_pci" + "virtio_scsi" + ]; + boot.initrd.kernelModules = [ + "dm-snapshot" + ]; boot.kernelModules = [ ]; boot.extraModulePackages = [ ];