mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 21:20:13 +00:00
fix references
This commit is contained in:
19
platforms/home-manager/modules/nmasur/settings.nix
Normal file
19
platforms/home-manager/modules/nmasur/settings.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ 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";
|
||||
};
|
||||
hostnames = lib.mkOption {
|
||||
type = lib.types.attrsOf lib.types.str;
|
||||
description = "Map of service names to FQDNs";
|
||||
default = { };
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user