aboutsummaryrefslogtreecommitdiff
path: root/modules/host-config.nix
blob: ff1eaa56df3b93e531bb96dc2e73713a647a3c89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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;
    };
  };
}