diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-11-12 12:27:03 -0800 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-11-12 12:27:03 -0800 |
commit | 8d4fc67e4cdf158b29b19d03781aff420b313157 (patch) | |
tree | e9d9b8ba737df6cdc108cd46974375bd07328136 /hosts/richese/hardware-configuration.nix | |
parent | 2ae1e1016411ac06cbbbe8244f63a8f7eb83f1e8 (diff) | |
download | nix-8d4fc67e4cdf158b29b19d03781aff420b313157.tar nix-8d4fc67e4cdf158b29b19d03781aff420b313157.tar.gz nix-8d4fc67e4cdf158b29b19d03781aff420b313157.tar.bz2 nix-8d4fc67e4cdf158b29b19d03781aff420b313157.tar.lz nix-8d4fc67e4cdf158b29b19d03781aff420b313157.tar.xz nix-8d4fc67e4cdf158b29b19d03781aff420b313157.tar.zst nix-8d4fc67e4cdf158b29b19d03781aff420b313157.zip |
Remove disko @richese
Diffstat (limited to 'hosts/richese/hardware-configuration.nix')
-rw-r--r-- | hosts/richese/hardware-configuration.nix | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/hosts/richese/hardware-configuration.nix b/hosts/richese/hardware-configuration.nix index d1c33b7..e4e04cf 100644 --- a/hosts/richese/hardware-configuration.nix +++ b/hosts/richese/hardware-configuration.nix @@ -12,4 +12,33 @@ 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"; } + ]; } |