-
Notifications
You must be signed in to change notification settings - Fork 15
/
flake-module.nix
444 lines (402 loc) · 14.7 KB
/
flake-module.nix
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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
{ inputs, lib, config, ... }:
let
inherit (builtins) pathExists readDir readFileType elemAt;
inherit (lib) mkOption types optionals literalExpression mapAttrs concatMapAttrs genAttrs mkIf;
inherit (lib.strings) hasSuffix removeSuffix;
cfg = config.ezConfigs;
# Creates a list of imports to include for a given user.
# This is used in both systemsWith and userConfigs,
# so it's convinient to have it exported as a top level function
userImports = { stdenv, userModules, ezModules, user, importDefault }:
[ (userModules.${user} or { }) ] ++ # user module
optionals importDefault ([ (ezModules.default or { }) ] ++ # default module
optionals stdenv.isDarwin [ (ezModules.darwin or { }) ] ++ # default darwin module
optionals stdenv.isLinux [ (ezModules.linux or { }) ]); # default linux module;
# Creates an attrset of nixosConfigurations or darwinConfigurations.
systemsWith =
{ os
, ezModules
, hostModules
, specialArgs
, defaultHost
, extraSpecialArgs
, userModules
, ezHomeModules
, users
}: hosts:
mapAttrs
(name: configModule:
let
hostSettings = hosts.${name} or defaultHost;
inherit (hostSettings) importDefault userHomeModules;
hmModule =
if inputs ? home-manager then
(
if os == "linux"
then inputs.home-manager.nixosModules.default
else inputs.home-manager.darwinModules.default
)
else
throw ''
home-manager input not found, but host ${name} was configured with `userHomeModules`.
Please add a home-manager input to your flake.
'';
systemBuilder =
if os == "linux" then
(
if inputs ? nixpkgs
then inputs.nixpkgs.lib.nixosSystem
else
throw ''
nixpkgs input not found, but host ${name} present in nixosConfigurations directory.
Please add a nixpkgs input to your flake.
''
)
else
(if inputs ? darwin
then inputs.darwin.lib.darwinSystem
else if inputs ? nix-darwin
then inputs.nix-darwin.lib.darwinSystem
else
throw ''
darwin or nix-darwin input not found, but host ${name} present in darwinConfigurations directory.
Please add a darwin or nix-darwin input to your flake.
''
);
in
systemBuilder {
specialArgs = specialArgs // { inherit ezModules; };
modules = [
configModule
{ networking.hostName = lib.mkDefault "${name}"; }
] ++ optionals importDefault [ (ezModules.default or { }) ]
++ optionals (userHomeModules != [ ]) [
hmModule
{ home-manager.extraSpecialArgs = extraSpecialArgs // { ezModules = ezHomeModules; }; }
({ pkgs, ... }: {
home-manager.users = genAttrs
userHomeModules
(user:
if userModules ? ${user} then
let
userSettings = users.${user} or (defaultSubmodule userOptions);
in
{
imports = userImports {
inherit (pkgs) stdenv;
inherit (userSettings) importDefault;
inherit user userModules;
ezModules = ezHomeModules;
};
}
else
throw ''User ${user} not found inside homeConfigurations directory, but was added to ${name}.userHomeModules''
);
})
];
})
hostModules;
allHosts =
(config.flake.nixosConfigurations //
config.flake.darwinConfigurations);
# Creates an attrset of home manager confgurations for each user on each host.
userConfigs = { ezModules, userModules, extraSpecialArgs, defaultUser }: users:
concatMapAttrs
(user: configModule:
let
userSettings = users.${user} or defaultUser;
inherit (userSettings)
nameFunction
importDefault
passInOsConfig;
standalone = userSettings.standalone or { enable = false; };
mkName =
if nameFunction == null
then host: "${user}@${host}"
else nameFunction;
modules = stdenv: userImports { inherit stdenv importDefault user ezModules userModules; };
homeManagerConfiguration =
if inputs ? home-manager
then inputs.home-manager.lib.homeManagerConfiguration
else
throw ''
home-manager input not found, but user ${user} present in homeConfigurations directory.
Please add a home-manager input to your flake.
'';
in
if standalone.enable
then
{
${user} = homeManagerConfiguration {
inherit (standalone) pkgs;
extraSpecialArgs = extraSpecialArgs //
{ inherit ezModules; } //
# We still want to pass in osConfig even when there is none,
# so that modules evaluate properly when using that argument
(if passInOsConfig then { osConfig = { }; } else { });
modules = modules standalone.pkgs.stdenv;
};
}
else
concatMapAttrs
(host: { config, pkgs, ... }: {
${mkName host} = homeManagerConfiguration {
inherit pkgs;
extraSpecialArgs = extraSpecialArgs //
{ inherit ezModules; } //
(if passInOsConfig then { osConfig = config; } else { });
modules = modules pkgs.stdenv;
};
})
allHosts
)
userModules;
readModules = dir:
if pathExists "${dir}.nix" && readFileType "${dir}.nix" == "regular" then
{ default = dir; }
else if pathExists dir && readFileType dir == "directory" then
concatMapAttrs
(entry: type:
let
dirDefault = "${dir}/${entry}/default.nix";
in
if type == "regular" && hasSuffix ".nix" entry then
{ ${removeSuffix ".nix" entry} = "${dir}/${entry}"; }
else if pathExists dirDefault && readFileType dirDefault == "regular" then
{ ${entry} = dirDefault; }
else { }
)
(readDir dir)
else { }
;
# This is a workaround the types.attrsOf (type.submodule ...) functionality.
# We can't ensure that each host/ user present in the appropriate directory
# is also present in the attrset, so we need to create a default module for it.
# That way we can fallback to it if it's not present in the attrset.
# Is there a better way to do this? Maybe defining a custom type?
defaultSubmodule = submodule:
concatMapAttrs
(opt: optDef:
if optDef ? default then
{ ${opt} = optDef.default; }
else { }
)
submodule.options;
# Getting the first submodule seems to work, but not sure if it's the best way.
defaultSubmoduleAttr = attrsType:
defaultSubmodule (elemAt attrsType.getSubModules 0);
hostOptions = system: {
options = {
importDefault = mkOption {
default = true;
type = types.bool;
description = ''
Whether to import the default module for this host.
'';
};
userHomeModules = mkOption {
default = [ ];
type = types.listOf types.str;
description = ''
List of users in ''${ezConfigs.hm.usersDirectory},
whose comfigurations to import as home manager ${system}Modules.
They will be put inside `home-manager.''${user}.imports` list for this host.
When this list is not empty, the `home-manager.extraSpecialArgs` option
is also set to the one it would recieve in homeManagerConfigurations
output, and the appropriate homeManager module is imported.
'';
};
};
};
userOptions.options = {
nameFunction = mkOption {
type = types.nullOr (types.functionTo types.str);
default = null;
defaultText = literalExpression "\${username}@\${hostname}";
example = literalExpression "(host: \"\${host}-\${name})\")";
description = ''
Function to generate the name of the user configuration using the host name.
'';
};
importDefault = mkOption {
default = true;
type = types.bool;
description = ''
Whether to import the default module for this user.
'';
};
passInOsConfig = mkOption {
default = true;
type = types.bool;
description = ''
Whether to pass the osConfig argument to extraSpecialArgs.
This will be the nixosConfiguration.config or darwinConfiguration.config,
whose pkgs are being used to build this homeConfiguration.
'';
};
standalone = {
enable = mkOption {
default = false;
type = types.bool;
description = ''
Whether to create a standalone user configuration.
By default each user and host pair gets its own homeConfigurations attribute,
and the pkgs passed into homeConfiguration function come from that system.
This will prevent the ''${user}@''${host} outputs from being created.
Instead a standalone user configuration will be created with user name.
'';
};
pkgs = mkOption {
type = types.pkgs;
example = literalExpression "import nixpkgs {system = \"x86_64-linux\"}";
description = ''
The package set with which to construct the homeManagerConfiguration.
Non standalone user configurations will use the package set of the host system.
'';
};
};
};
configurationOptions = configType: {
modulesDirectory = mkOption {
default = if cfg.root != null then "${cfg.root}/${configType}-modules" else ./unset-directory;
defaultText = literalExpression "\"\${ezConfigs.root}/${configType}-modules\"";
type = types.path;
description = ''
The directory containing ${configType}Modules.
'';
};
configurationsDirectory = mkOption {
default = if cfg.root != null then "${cfg.root}/${configType}-configurations" else ./unset-directory;
defaultText = literalExpression "\"\${ezConfigs.root}/${configType}-configurations\"";
type = types.path;
description = ''
The directory containing ${configType}Configurations.
'';
};
} // (
if configType == "home" then
{
extraSpecialArgs = mkOption {
default = cfg.globalArgs;
defaultText = literalExpression "ezConfigs.globalArgs";
type = types.attrsOf types.anything;
description = ''
Extra arguments to pass to all homeConfigurations.
'';
};
users = mkOption {
default = { };
type = types.attrsOf (types.submodule userOptions);
example = literalExpression ''
{
alice = {
standalone = {
enable = true;
pkgs = import nixpkgs { system = "x86_64-linux"; };
};
};
bob = {
importDefault = false;
};
}
'';
description = ''
Settings for creating homeConfigurations.
It's not neccessary to specify this option to create flake outputs.
It's only needed if you want to change the defaults for specific homeConfigurations.
'';
};
}
else
{
specialArgs = mkOption {
default = cfg.globalArgs;
defaultText = literalExpression "ezConfigs.globalArgs";
type = types.attrsOf types.anything;
description = ''
Extra arguments to pass to all ${configType}Configurations.
'';
};
hosts = mkOption {
default = { };
type = types.attrsOf (types.submodule (hostOptions configType));
example = literalExpression ''
{
hostA = {
userHomeModules = [ "bob" ];
};
hostB = {
importDefault = false;
arch = "aarch64
};
}
'';
description = ''
Settings for creating ${configType}Configurations.
It's not neccessary to specify this option to create flake outputs.
It's only needed if you want to change the defaults for specific ${configType}Configurations.
'';
};
}
);
in
{
options.ezConfigs = {
root = mkOption {
default = null;
type = types.nullOr types.path;
example = literalExpression "./.";
description = ''
The root from which configurations and modules should be searched.
'';
};
globalArgs = mkOption {
default = { };
example = literalExpression "{ inherit inputs; }";
type = types.attrsOf types.anything;
description = ''
Extra arguments to pass to all configurations.
'';
};
home = configurationOptions "home";
nixos = configurationOptions "nixos";
darwin = configurationOptions "darwin";
};
config.flake = rec {
homeModules = readModules cfg.home.modulesDirectory;
nixosModules = readModules cfg.nixos.modulesDirectory;
darwinModules = readModules cfg.darwin.modulesDirectory;
homeConfigurations = userConfigs
{
userModules = readModules cfg.home.configurationsDirectory;
defaultUser = defaultSubmodule userOptions;
ezModules = homeModules;
inherit (cfg.home) extraSpecialArgs;
}
cfg.home.users;
nixosConfigurations = systemsWith
{
os = "linux";
hostModules = readModules cfg.nixos.configurationsDirectory;
defaultHost = defaultSubmoduleAttr ((configurationOptions "nixos").hosts.type);
ezModules = nixosModules;
userModules = readModules cfg.home.configurationsDirectory;
ezHomeModules = homeModules;
inherit (cfg.nixos) specialArgs;
inherit (cfg.home) extraSpecialArgs users;
}
cfg.nixos.hosts;
darwinConfigurations = systemsWith
{
os = "darwin";
hostModules = readModules cfg.darwin.configurationsDirectory;
defaultHost = defaultSubmoduleAttr ((configurationOptions "darwin").hosts.type);
ezModules = darwinModules;
userModules = readModules cfg.home.configurationsDirectory;
ezHomeModules = homeModules;
inherit (cfg.darwin) specialArgs;
inherit (cfg.home) extraSpecialArgs users;
}
cfg.darwin.hosts;
};
}