about summary refs log tree commit diff
path: root/modules/homelab/domain.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-12-09 09:15:23 -0800
committerFranck Cuny <franck@fcuny.net>2023-12-09 09:15:23 -0800
commit543fcc38c9c48349d6988b1ace119f0cef2d6efa (patch)
treeae8174b09797fd19e365f60bf25a9d20b222c855 /modules/homelab/domain.nix
parentinstall kind / configure the dock (diff)
downloadworld-543fcc38c9c48349d6988b1ace119f0cef2d6efa.tar.gz
delete even more unused configurations
Diffstat (limited to 'modules/homelab/domain.nix')
-rw-r--r--modules/homelab/domain.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/modules/homelab/domain.nix b/modules/homelab/domain.nix
deleted file mode 100644
index 2f0acfa..0000000
--- a/modules/homelab/domain.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ 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;
-  };
-}