mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
17 lines
346 B
Nix
17 lines
346 B
Nix
{
|
|
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";
|
|
};
|
|
};
|
|
}
|