aboutsummaryrefslogtreecommitdiff
path: root/modules/host-config.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/host-config.nix')
-rw-r--r--modules/host-config.nix9
1 files changed, 9 insertions, 0 deletions
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 = { };
+ };
+ };
+}