more changes

This commit is contained in:
Noah Masur
2025-03-04 07:50:47 -05:00
parent eed097f270
commit 05e3996eb3
13 changed files with 60 additions and 28 deletions

View File

@ -1,4 +1,4 @@
{ lib, ... }:
{ lib, hostnames, ... }:
{
options.nmasur.settings = {
@ -13,7 +13,7 @@
hostnames = lib.mkOption {
type = lib.types.attrsOf lib.types.str;
description = "Map of service names to FQDNs";
default = { };
default = hostnames;
};
};
}