diff --git a/hosts/dandelion/variables.nix b/hosts/dandelion/variables.nix deleted file mode 100644 index 241d088..0000000 --- a/hosts/dandelion/variables.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ - lib, - config, - ... -}: let - inherit (lib) mkOption types; - inherit (config.liv) variables; -in { - options.liv.variables.dandelion = { - thisMachine = mkOption { - default = "dandelion.srv.${variables.primaryDomain}"; - type = types.str; - readOnly = true; - description = "Domain of this specific machine"; - }; - }; -}