fix warnings for flame

This commit is contained in:
Noah Masur
2025-02-18 17:44:39 -05:00
parent 1d4ad5b0af
commit 7007567207
18 changed files with 94 additions and 75 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;
};
};
}