diff options
Diffstat (limited to 'modules/host-config.nix')
| -rw-r--r-- | modules/host-config.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/host-config.nix b/modules/host-config.nix new file mode 100644 index 0000000..b10d85f --- /dev/null +++ b/modules/host-config.nix @@ -0,0 +1,15 @@ +{ lib, ... }: +let + inherit (lib) mkOption; + inherit (lib.types) + attrs + ; +in +{ + options = { + adminUser = mkOption { + type = attrs; + default = { }; + }; + }; +} |
