-
-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathsubmodule-options.nix
More file actions
348 lines (336 loc) · 8.88 KB
/
Copy pathsubmodule-options.nix
File metadata and controls
348 lines (336 loc) · 8.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
{ pkgs
, lib
, name
, config
, homeDir
, usersOpts ? false # Are the options used as users.<username> submodule options?
, user # Default user name
, group # Default user group
}:
let
inherit (lib)
mkOption
mkDefault
mkIf
mapAttrsToList
types
mapAttrs
optionals
optionalAttrs
mkRemovedOptionModule
;
inherit (pkgs.callPackage ./lib.nix { })
concatPaths
;
inherit (types)
bool
listOf
submodule
nullOr
path
enum
str
coercedTo
unspecified
;
defaultPerms = {
mode = "0755";
inherit user group;
};
commonOpts = {
options = {
persistentStoragePath = mkOption {
type = path;
default = config.persistentStoragePath;
defaultText = "environment.persistence.‹name›.persistentStoragePath";
description = ''
The path to persistent storage where the real
file or directory should be stored.
'';
};
home = mkOption {
type = nullOr path;
default = null;
internal = true;
description = ''
The path to the home directory the file or
directory is placed within.
'';
};
enableDebugging = mkOption {
type = bool;
default = config.enableDebugging;
defaultText = "environment.persistence.‹name›.enableDebugging";
internal = true;
description = ''
Enable debug trace output when running
scripts. You only need to enable this if asked
to.
'';
};
assertions = mkOption {
type = listOf unspecified;
internal = true;
default = [ ];
};
};
};
dirPermsOpts = {
user = mkOption {
type = str;
description = ''
If the directory doesn't exist in persistent
storage it will be created and owned by the user
specified by this option.
'';
};
group = mkOption {
type = nullOr str;
description = ''
If the directory doesn't exist in persistent
storage it will be created and owned by the
group specified by this option.
'';
};
mode = mkOption {
type = str;
example = "0700";
description = ''
If the directory doesn't exist in persistent
storage it will be created with the mode
specified by this option.
'';
};
};
fileOpts = {
options = {
file = mkOption {
type = str;
description = ''
The path to the file.
'';
};
parentDirectory =
commonOpts.options //
mapAttrs
(_: x:
if x._type or null == "option" then
x // { internal = true; }
else
x)
dirOpts.options;
method = mkOption {
type = enum [ "auto" "symlink" ];
default = "auto";
description = ''
The method used to link to the target file.
`auto' will almost always do the right thing,
thus you should only set this if the default
doesn't work.
'';
};
filePath = mkOption {
type = path;
internal = true;
};
};
};
dirOpts = {
options = {
directory = mkOption {
type = str;
description = ''
The path to the directory.
'';
};
hideMount = mkOption {
type = bool;
default = config.hideMounts;
defaultText = "environment.persistence.‹name›.hideMounts";
example = true;
description = ''
Whether to hide bind mounts from showing up as
mounted drives.
'';
};
allowTrash = mkOption {
type = bool;
default = config.allowTrash;
defaultText = "environment.persistence.‹name›.allowTrash";
example = true;
description = ''
Whether to allow newer GIO-based applications to trash files.
'';
};
# Save the default permissions at the level the
# directory resides. This used when creating its
# parent directories, giving them reasonable
# default permissions unaffected by the
# directory's own.
defaultPerms = mapAttrs (_: x: x // { internal = true; }) dirPermsOpts;
dirPath = mkOption {
type = path;
internal = true;
};
} // dirPermsOpts;
};
file = submodule [
commonOpts
fileOpts
(mkIf (homeDir != null) { home = homeDir; })
{
parentDirectory = mkDefault defaultPerms;
}
({ config, ... }:
let
parentPath = if config.home != null then config.home else "/";
directory = dirOf config.file;
in
{
parentDirectory = {
dirPath = concatPaths [ parentPath directory ];
inherit directory defaultPerms;
inherit (config) home persistentStoragePath;
};
filePath = concatPaths [ parentPath config.file ];
})
];
dir = submodule ([
commonOpts
dirOpts
{
imports = [
(mkRemovedOptionModule
[ "method" ]
''
▹ persistence."${name}":
As real bind mounts are now used instead of bindfs, changing the directory linking
method is deprecated.
'')
];
}
(mkIf (homeDir != null) { home = homeDir; })
({ config, ... }:
let
home = if config.home != null then config.home else "/";
in
{
defaultPerms = mkDefault defaultPerms;
dirPath = concatPaths [ home config.directory ];
})
] ++ (mapAttrsToList (n: v: { ${n} = mkDefault v; }) defaultPerms));
in
{
imports = optionals (!usersOpts) [
(mkRemovedOptionModule
[ "allowOther" ]
''
▹ persistence."${name}":
As real bind mounts are now used instead of bindfs, `allowOther' is no longer needed.
'')
(mkRemovedOptionModule
[ "removePrefixDirectory" ]
''
▹ persistence."${name}":
The use of prefix directories is deprecated and the functionality has been removed.
If you depend on this functionality, use the `home-manager-v1' branch.
'')
(mkRemovedOptionModule
[ "defaultDirectoryMethod" ]
''
▹ persistence."${name}":
As real bind mounts are now used instead of bindfs, changing the default directory linking
method is deprecated.
'')
] ++ (optionals usersOpts [
(mkRemovedOptionModule
[ "home" ]
''
▹ persistence."${name}":
The home directory is now automatically deduced, rendering this option useless.
'')
]);
options =
{
files = mkOption {
type = listOf (coercedTo str (f: { file = f; }) file);
default = [ ];
example = [
"/etc/machine-id"
"/etc/nix/id_rsa"
];
description = ''
Files that should be stored in persistent storage.
'';
};
directories = mkOption {
type = listOf (coercedTo str (d: { directory = d; }) dir);
default = [ ];
example = [
"/var/log"
"/var/lib/bluetooth"
"/var/lib/nixos"
"/var/lib/systemd/coredump"
"/etc/NetworkManager/system-connections"
];
description = ''
Directories to bind mount to persistent storage.
'';
};
assertions = mkOption {
type = listOf unspecified;
internal = true;
default = [ ];
};
} //
optionalAttrs (!usersOpts)
{
enable = mkOption {
type = bool;
default = true;
description = "Whether to enable this persistent storage location.";
};
persistentStoragePath = mkOption {
type = path;
default = name;
defaultText = "‹name›";
description = ''
The path to persistent storage where the real
files and directories should be stored.
'';
};
hideMounts = mkOption {
type = bool;
default = false;
example = true;
description = ''
Whether to hide bind mounts from showing up as mounted drives.
'';
};
allowTrash = mkOption {
type = bool;
default = false;
example = true;
description = ''
Whether to allow newer GIO-based applications to trash files.
'';
};
enableDebugging = mkOption {
type = bool;
default = false;
internal = true;
description = ''
Enable debug trace output when running
scripts. You only need to enable this if asked
to.
'';
};
enableWarnings = mkOption {
type = bool;
default = true;
description = ''
Enable non-critical warnings.
'';
};
};
}