diff --git a/hosts/dandelion/variables.nix b/hosts/dandelion/variables.nix new file mode 100644 index 0000000..241d088 --- /dev/null +++ b/hosts/dandelion/variables.nix @@ -0,0 +1,17 @@ +{ + 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"; + }; + }; +}