diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/default-darwin.nix | 1 | ||||
| -rw-r--r-- | modules/default.nix | 1 | ||||
| -rw-r--r-- | modules/host-config.nix | 9 |
3 files changed, 11 insertions, 0 deletions
diff --git a/modules/default-darwin.nix b/modules/default-darwin.nix index 4b4daaa..d420292 100644 --- a/modules/default-darwin.nix +++ b/modules/default-darwin.nix @@ -2,5 +2,6 @@ { imports = [ ./ssh.nix + ./host-config.nix ]; } diff --git a/modules/default.nix b/modules/default.nix index 257c72e..041a388 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -3,5 +3,6 @@ imports = [ ./remote-unlock.nix ./ssh.nix + ./host-config.nix ]; } diff --git a/modules/host-config.nix b/modules/host-config.nix new file mode 100644 index 0000000..5bb5e94 --- /dev/null +++ b/modules/host-config.nix @@ -0,0 +1,9 @@ +{ lib, ... }: +{ + options = { + adminUser = lib.mkOption { + type = lib.types.attrs; + default = { }; + }; + }; +} |
