puter/hosts/headless/abacus/domains.nix

15 lines
284 B
Nix
Raw Normal View History

2025-03-23 21:48:46 +00:00
{lib, ...}: let
inherit (lib) types;
in {
options.networking.domains = lib.mkOption {
description = "Domains.";
type = types.attrsOf types.str;
default = {};
};
config.networking.domains = {
wrz = "wrz.one";
helvetica = "helveticanonstandard.net";
};
}