diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-11-03 07:23:57 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-11-03 07:23:57 -0800 |
| commit | 8eebaf8cee812bd07d8d890040e403bacb1777fb (patch) | |
| tree | 2991267489e3387e1c36a718a54b35fa2b695937 /modules/host-config.nix | |
| parent | fix remote script (diff) | |
| download | infra-8eebaf8cee812bd07d8d890040e403bacb1777fb.tar.gz | |
consolidate all modules under modules/
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 = { }; + }; + }; +} |
