aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/richese
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2024-11-12 12:27:03 -0800
committerMark Nipper <nipsy@bitgnome.net>2024-11-12 12:27:03 -0800
commit8d4fc67e4cdf158b29b19d03781aff420b313157 (patch)
treee9d9b8ba737df6cdc108cd46974375bd07328136 /hosts/richese
parent2ae1e1016411ac06cbbbe8244f63a8f7eb83f1e8 (diff)
downloadnix-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')
-rw-r--r--hosts/richese/hardware-configuration.nix29
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"; }
+ ];
}