mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
20 lines
336 B
Nix
20 lines
336 B
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
config,
|
||
|
|
...
|
||
|
|
}:
|
||
|
|
let
|
||
|
|
inherit (lib) mkOption types;
|
||
|
|
inherit (config.liv) variables;
|
||
|
|
in
|
||
|
|
{
|
||
|
|
options.liv.variables.lily = {
|
||
|
|
thisMachine = mkOption {
|
||
|
|
default = "lily.srv.${variables.primaryDomain}";
|
||
|
|
type = types.str;
|
||
|
|
readOnly = true;
|
||
|
|
description = "Domain of this specific machine";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|