We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dab0d67 commit bdc224cCopy full SHA for bdc224c
3 files changed
hosts/marie-nas/disko.nix
@@ -146,6 +146,13 @@
146
mountpoint = "legacy";
147
};
148
149
+ "data/restic/marie" = {
150
+ type = "zfs_fs";
151
+ mountpoint = "/srv/restic/marie";
152
+ options = {
153
+ mountpoint = "legacy";
154
+ };
155
156
157
158
hosts/marie-nas/filesystems.nix
@@ -63,6 +63,11 @@
63
"x-systemd.device-timeout=15s"
64
];
65
66
+ "/srv/restic/marie" = {
67
+ device = "tank/data/restic/marie";
68
+ fsType = "zfs";
69
+ options = [ "nofail" ];
70
71
"/state" = {
72
device = "zroot/data/state";
73
fsType = "zfs";
hosts/marie-nas/samba.nix
@@ -11,6 +11,11 @@
11
user = "root";
12
mode = "2770";
13
14
+ "/srv/restic/marie".d = {
15
+ group = "users";
16
+ user = "marie";
17
+ mode = "0700";
18
19
20
users = {
21
groups.media = { };
0 commit comments