blob: f490d9ac4b8c154cbb546cc450eff182faf63072 (
plain)
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
|
{ lib, ... }:
with lib; {
imports = [
./mailbox.nix
];
options.local.users = with types; mkOption {
default = { };
type = attrsOf (submodule {
options = {
uid = mkOption {
type = int;
};
gid = mkOption {
type = int;
};
groups = mkOption {
type = listOf str;
default = [ ];
};
allowLogin = mkOption {
type = bool;
default = true;
};
hardAliases = mkOption {
type = listOf str;
default = [ ];
};
};
});
};
config.local.users = import ./users.nix;
}
|