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