From 8328e393ce834ecb6038698d6649427ea1be4a0f Mon Sep 17 00:00:00 2001 From: Mark Nipper Date: Tue, 12 Nov 2024 10:04:38 -0800 Subject: Modularize disko everywhere --- hosts/richese/default.nix | 1 + hosts/richese/disks.nix | 2 +- hosts/richese/hardware-configuration.nix | 29 ----------------------------- 3 files changed, 2 insertions(+), 30 deletions(-) (limited to 'hosts/richese') diff --git a/hosts/richese/default.nix b/hosts/richese/default.nix index 5cf92c2..a57e142 100644 --- a/hosts/richese/default.nix +++ b/hosts/richese/default.nix @@ -13,6 +13,7 @@ ]; imports = [ + ./disks.nix ./hardware-configuration.nix ../common/core #../common/optional/db.nix diff --git a/hosts/richese/disks.nix b/hosts/richese/disks.nix index 742fac6..576152f 100644 --- a/hosts/richese/disks.nix +++ b/hosts/richese/disks.nix @@ -18,7 +18,7 @@ type = "filesystem"; format = "vfat"; mountpoint = "/boot"; - mountOptions = [ "defaults" ]; + mountOptions = [ "umask=0077" ]; extraArgs = [ "-nboot" ]; }; }; diff --git a/hosts/richese/hardware-configuration.nix b/hosts/richese/hardware-configuration.nix index e4e04cf..d1c33b7 100644 --- a/hosts/richese/hardware-configuration.nix +++ b/hosts/richese/hardware-configuration.nix @@ -12,33 +12,4 @@ boot.initrd.kernelModules = [ ]; boot.kernelModules = [ ]; boot.extraModulePackages = [ ]; - - fileSystems."/" = - { device = "rpool/local/root"; - fsType = "zfs"; - }; - - fileSystems."/boot" = - { device = "/dev/disk/by-label/boot"; - fsType = "vfat"; - }; - - fileSystems."/nix" = - { device = "rpool/local/nix"; - fsType = "zfs"; - }; - - fileSystems."/root" = - { device = "rpool/user/home/root"; - fsType = "zfs"; - }; - - fileSystems."/home/nipsy" = - { device = "rpool/user/home/nipsy"; - fsType = "zfs"; - }; - - swapDevices = - [ { device = "/dev/disk/by-label/swap"; } - ]; } -- cgit v1.2.3