mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 16:40:14 +00:00
hostnames and user settings
This commit is contained in:
14
platforms/nix-darwin/modules/nmasur/settings.nix
Normal file
14
platforms/nix-darwin/modules/nmasur/settings.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ 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";
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user