nixos-config/variables.nix

18 lines
292 B
Nix
Raw Normal View History

2025-03-22 22:45:36 +01:00
{
lib,
config,
...
}: let
inherit (lib) mkOption types;
inherit (config.liv) variables;
in {
options.liv.variables = {
primaryDomain = mkOption {
default = "liv.town";
type = types.str;
readOnly = true;
description = "My primary domain";
};
};
}