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