summaryrefslogtreecommitdiff
path: root/hosts/vidhar/zfs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/vidhar/zfs.nix')
-rw-r--r--hosts/vidhar/zfs.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/hosts/vidhar/zfs.nix b/hosts/vidhar/zfs.nix
index 162377f0..5e1f225b 100644
--- a/hosts/vidhar/zfs.nix
+++ b/hosts/vidhar/zfs.nix
@@ -76,6 +76,24 @@ in {
76 { device = "ssd-raid1/local/var-log"; 76 { device = "ssd-raid1/local/var-log";
77 fsType = "zfs"; 77 fsType = "zfs";
78 }; 78 };
79
80 "/home" =
81 { device = "hdd-raid6/safe/home";
82 fsType = "zfs";
83 options = [ "zfsutil" ];
84 }
85
86 "/home/gkleen" =
87 { device = "hdd-raid6/safe/home/gkleen";
88 fsType = "zfs";
89 options = [ "zfsutil" ];
90 }
91
92 "/home/mherold" =
93 { device = "hdd-raid6/safe/home/mherold";
94 fsType = "zfs";
95 options = [ "zfsutil" ];
96 }
79 }; 97 };
80 98
81 systemd.services = 99 systemd.services =