feat: adds lily to hosts

This commit is contained in:
Ahwx 2025-05-15 21:32:38 +02:00
parent a371faa29c
commit 966ed75d85
2 changed files with 60 additions and 0 deletions

19
hosts/lily/variables.nix Normal file
View file

@ -0,0 +1,19 @@
{
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";
};
};
}