From 9b7778663ee871a84f698647090a49e1a61c09b6 Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Tue, 29 Nov 2022 17:06:46 +0100 Subject: [PATCH] newton: fmt hardware-config --- nixos/newton/hardware-configuration.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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 = [ ];