20 lines
469 B
Nix
Raw Normal View History

2025-03-04 07:50:47 -05:00
{ lib, hostnames, ... }:
2025-02-17 14:05:23 -05:00
{
options.nmasur.settings = {
username = lib.mkOption {
type = lib.types.str;
description = "Primary username for the system";
};
fullName = lib.mkOption {
type = lib.types.str;
description = "Human readable name of the user";
};
hostnames = lib.mkOption {
type = lib.types.attrsOf lib.types.str;
description = "Map of service names to FQDNs";
2025-03-04 07:50:47 -05:00
default = hostnames;
2025-02-17 14:05:23 -05:00
};
};
}