summaryrefslogtreecommitdiff
path: root/env/users/default.nix
blob: 2eaf891989e1d3dba3b75a9e628a5fbf6cf242a0 (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
40
41
42
43
44
{ 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;
        };

        gecos = mkOption {
          type = str;
          default = "";
        };

        groups = mkOption {
          type = listOf str;
          default = [ ];
        };

        allowLogin = mkOption {
          type = bool;
          default = true;
        };

        hardAliases = mkOption {
          type = listOf str;
          default = [ ];
        };
      };
    });
  };

  config.local.users = import ./users.nix;
}