summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2022-05-16 00:51:11 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2022-05-16 00:51:11 +0200
commit8f0bf6945a24ea8dac4e8395461bb92f22ab71a0 (patch)
treedd1b4ee7b0e9e32f5aa95d2d51fcd2f01d6aec09
parenta029854b6f0fd913619c0d3b98897eca2bac8198 (diff)
downloadnixos-8f0bf6945a24ea8dac4e8395461bb92f22ab71a0.tar
nixos-8f0bf6945a24ea8dac4e8395461bb92f22ab71a0.tar.gz
nixos-8f0bf6945a24ea8dac4e8395461bb92f22ab71a0.tar.bz2
nixos-8f0bf6945a24ea8dac4e8395461bb92f22ab71a0.tar.xz
nixos-8f0bf6945a24ea8dac4e8395461bb92f22ab71a0.zip
vidhar: ...
-rw-r--r--hosts/vidhar/zfs.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/hosts/vidhar/zfs.nix b/hosts/vidhar/zfs.nix
index cfbd3d3a..ef285536 100644
--- a/hosts/vidhar/zfs.nix
+++ b/hosts/vidhar/zfs.nix
@@ -101,18 +101,21 @@
101 { device = "/dev/zvol/hdd-raid6/safe/home/mherold/camera/2020-09-13"; 101 { device = "/dev/zvol/hdd-raid6/safe/home/mherold/camera/2020-09-13";
102 fsType = "vfat"; 102 fsType = "vfat";
103 options = [ "uid=mherold" "gid=users" "x-systemd.automount" "x-systemd.idle-timeout=120" ]; 103 options = [ "uid=mherold" "gid=users" "x-systemd.automount" "x-systemd.idle-timeout=120" ];
104 noCheck = true;
104 }; 105 };
105 106
106 "/home/mherold/camera/2022-01-16" = 107 "/home/mherold/camera/2022-01-16" =
107 { device = "/dev/zvol/hdd-raid6/safe/home/mherold/camera/2022-01-16"; 108 { device = "/dev/zvol/hdd-raid6/safe/home/mherold/camera/2022-01-16";
108 fsType = "vfat"; 109 fsType = "vfat";
109 options = [ "uid=mherold" "gid=users" "x-systemd.automount" "x-systemd.idle-timeout=120" ]; 110 options = [ "uid=mherold" "gid=users" "x-systemd.automount" "x-systemd.idle-timeout=120" ];
111 noCheck = true;
110 }; 112 };
111 113
112 "/home/mherold/camera/2022-05-15" = 114 "/home/mherold/camera/2022-05-15" =
113 { device = "/dev/zvol/hdd-raid6/safe/home/mherold/camera/2022-05-15"; 115 { device = "/dev/zvol/hdd-raid6/safe/home/mherold/camera/2022-05-15";
114 fsType = "vfat"; 116 fsType = "vfat";
115 options = [ "uid=mherold" "gid=users" "x-systemd.automount" "x-systemd.idle-timeout=120" ]; 117 options = [ "uid=mherold" "gid=users" "x-systemd.automount" "x-systemd.idle-timeout=120" ];
118 noCheck = true;
116 }; 119 };
117 }; 120 };
118 121