about summary refs log tree commit diff
path: root/modules/homelab
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--modules/homelab/default.nix4
-rw-r--r--modules/homelab/domain.nix17
2 files changed, 21 insertions, 0 deletions
diff --git a/modules/homelab/default.nix b/modules/homelab/default.nix
new file mode 100644
index 0000000..d60b99f
--- /dev/null
+++ b/modules/homelab/default.nix
@@ -0,0 +1,4 @@
+{ ... }:
+{
+  imports = [ ./domain.nix ];
+}
diff --git a/modules/homelab/domain.nix b/modules/homelab/domain.nix
new file mode 100644
index 0000000..2f0acfa
--- /dev/null
+++ b/modules/homelab/domain.nix
@@ -0,0 +1,17 @@
+{ lib, config, self, ... }:
+let
+  inherit (builtins) readFile fromTOML;
+in
+{
+  options = with lib; {
+    homelab.domain = mkOption {
+      type = types.str;
+      default = null;
+      description = "Domain";
+    };
+  };
+
+  config = {
+    homelab.domain = (fromTOML (readFile "${self}/configs/homelab.toml")).domain;
+  };
+}