summaryrefslogtreecommitdiff
path: root/modules/options/default.nix
blob: 39276d11cd16a177b337888519628320887a244b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, ... }:
{
  imports = [
    ./containers.nix
    ./nix.nix
  ];

  options.modules =
    with lib.options;
    with lib.types;
    {
      primaryUser = mkOption {
        default = null;
        type = types.str;
      };

      mosh.enable = mkOption {
        default = false;
        type = types.bool;
      };
    };
}