aboutsummaryrefslogtreecommitdiff
path: root/modules/host-config.nix
blob: 348c7b0299b5d5a6c73e17c424a618b7e7d6f0f0 (plain) (blame)
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
{ lib, ... }:
{
  options = {
    adminUser = lib.mkOption {
      type = lib.types.attrs;
      default = { };
    };
    wgPublicKey = lib.mkOption {
      type = lib.types.nullOr lib.types.str;
      default = null;
    };
    publicKey = lib.mkOption {
      type = lib.types.str;
      default = "xxxx";
    };
    ephemeralRoot = lib.mkOption {
      type = lib.types.bool;
      default = false;
    };
    secureBoot = lib.mkOption {
      type = lib.types.bool;
      default = false;
    };
  };
}