diff options
author | Julian T <julian@jtle.dk> | 2021-03-26 23:15:41 +0100 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2021-03-26 23:15:50 +0100 |
commit | 2e8fe8b92cc722fc10c9d9d18fabac9cb30ea3fc (patch) | |
tree | 08f42bb2e9d7a620c6f36d048a3c502b69219b4f /hardware-configuration.nix | |
parent | 5d18d935ff732363db2858dd04a1d7d7245c620b (diff) |
Fix indentation
Diffstat (limited to 'hardware-configuration.nix')
-rw-r--r-- | hardware-configuration.nix | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/hardware-configuration.nix b/hardware-configuration.nix index e38eebc..5f08e39 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -4,30 +4,30 @@ { config, lib, pkgs, modulesPath, ... }: { - imports = - [ (modulesPath + "/installer/scan/not-detected.nix") + imports = + [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "nvme" "ehci_pci" "xhci_pci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; - boot.initrd.kernelModules = [ "dm-snapshot" ]; - boot.kernelModules = [ "kvm-amd" ]; - boot.extraModulePackages = [ ]; + boot.initrd.availableKernelModules = [ "nvme" "ehci_pci" "xhci_pci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; + boot.initrd.kernelModules = [ "dm-snapshot" ]; + boot.kernelModules = [ "kvm-amd" ]; + boot.extraModulePackages = [ ]; - fileSystems."/" = - { device = "/dev/stuff/root"; - fsType = "ext4"; + fileSystems."/" = + { device = "/dev/stuff/root"; + fsType = "ext4"; }; - fileSystems."/home" = - { device = "/dev/stuff/home"; - fsType = "ext4"; + fileSystems."/home" = + { device = "/dev/stuff/home"; + fsType = "ext4"; }; - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/7178-78A1"; - fsType = "vfat"; + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/7178-78A1"; + fsType = "vfat"; }; - swapDevices = [ ]; + swapDevices = [ ]; } |