mirror of
https://github.com/nmasur/dotfiles
synced 2025-02-12 20:32:03 +00:00
20 lines
460 B
Nix
20 lines
460 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
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";
|
|
};
|
|
options.hostnames = lib.mkOption {
|
|
type = lib.types.attrsOf lib.types.str;
|
|
description = "Map of service names to FQDNs";
|
|
default = { };
|
|
};
|
|
};
|
|
}
|