From 979eb68ca0d1fe4918622542ea88ad7a5db7da36 Mon Sep 17 00:00:00 2001 From: sefidel Date: Wed, 15 Feb 2023 00:44:41 +0900 Subject: feat(nixos/kompakt): remove comments & format --- nixos/kompakt/hardware-configuration.nix | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'nixos/kompakt/hardware-configuration.nix') diff --git a/nixos/kompakt/hardware-configuration.nix b/nixos/kompakt/hardware-configuration.nix index 27c7ad8..66b6571 100644 --- a/nixos/kompakt/hardware-configuration.nix +++ b/nixos/kompakt/hardware-configuration.nix @@ -5,7 +5,8 @@ { imports = - [ (modulesPath + "/installer/scan/not-detected.nix") + [ + (modulesPath + "/installer/scan/not-detected.nix") ]; boot.initrd.availableKernelModules = [ "usb_storage" ]; @@ -14,27 +15,32 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "rpool/local/root"; + { + device = "rpool/local/root"; fsType = "zfs"; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/01AC-1BF6"; + { + device = "/dev/disk/by-uuid/01AC-1BF6"; fsType = "vfat"; }; fileSystems."/nix" = - { device = "rpool/local/nix"; + { + device = "rpool/local/nix"; fsType = "zfs"; }; fileSystems."/persist" = - { device = "rpool/safe/persist"; + { + device = "rpool/safe/persist"; fsType = "zfs"; }; fileSystems."/home" = - { device = "rpool/safe/home"; + { + device = "rpool/safe/home"; fsType = "zfs"; }; -- cgit 1.4.1