diff options
| author | root@dishwasher | 2022-06-26 21:19:15 +0200 |
|---|---|---|
| committer | root@dishwasher | 2022-06-26 21:19:15 +0200 |
| commit | ebc2829be8ffda323b7fa41192c2b5db33520b7f (patch) | |
| tree | f8f60ca47261c8c823a699c7c1e1510d40efaaa1 /hosts/dishwasher/hardware-configuration.nix | |
| parent | 35e93ce43b12e3be922e37b27f74d5d4b86929f4 (diff) | |
nixpkgs-fmt
Diffstat (limited to 'hosts/dishwasher/hardware-configuration.nix')
| -rw-r--r-- | hosts/dishwasher/hardware-configuration.nix | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/hosts/dishwasher/hardware-configuration.nix b/hosts/dishwasher/hardware-configuration.nix index ebbd0ff..f9735fb 100644 --- a/hosts/dishwasher/hardware-configuration.nix +++ b/hosts/dishwasher/hardware-configuration.nix @@ -5,7 +5,8 @@ { imports = - [ (modulesPath + "/installer/scan/not-detected.nix") + [ + (modulesPath + "/installer/scan/not-detected.nix") ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; @@ -14,37 +15,43 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/2971597a-b364-405d-8bb2-287556e819e1"; + { + device = "/dev/disk/by-uuid/2971597a-b364-405d-8bb2-287556e819e1"; fsType = "btrfs"; options = [ "subvol=nixos" "compress=zstd" "noatime" ]; }; fileSystems."/var/lib" = - { device = "/dev/disk/by-uuid/2971597a-b364-405d-8bb2-287556e819e1"; + { + device = "/dev/disk/by-uuid/2971597a-b364-405d-8bb2-287556e819e1"; fsType = "btrfs"; options = [ "subvol=var-lib" "compress=zstd" "noatime" ]; }; fileSystems."/var/log" = - { device = "/dev/disk/by-uuid/2971597a-b364-405d-8bb2-287556e819e1"; + { + device = "/dev/disk/by-uuid/2971597a-b364-405d-8bb2-287556e819e1"; fsType = "btrfs"; options = [ "subvol=var-log" "compress=zstd" "noatime" ]; }; fileSystems."/var/microvms" = - { device = "/dev/disk/by-uuid/2971597a-b364-405d-8bb2-287556e819e1"; + { + device = "/dev/disk/by-uuid/2971597a-b364-405d-8bb2-287556e819e1"; fsType = "btrfs"; options = [ "subvol=microvms" "compress=zstd" "noatime" ]; }; fileSystems."/nix" = - { device = "/dev/disk/by-uuid/2971597a-b364-405d-8bb2-287556e819e1"; + { + device = "/dev/disk/by-uuid/2971597a-b364-405d-8bb2-287556e819e1"; fsType = "btrfs"; options = [ "subvol=nix" "compress=zstd" "noatime" ]; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/2A04-BFAE"; + { + device = "/dev/disk/by-uuid/2A04-BFAE"; fsType = "vfat"; }; |
