20 lines
483 B
Nix
20 lines
483 B
Nix
{ lib, ... }:
|
|
{
|
|
options.flake.globalConfig = {
|
|
username = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "dennis";
|
|
description = "Primary username for the system";
|
|
};
|
|
fullname = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "Dennis Schoepf";
|
|
description = "Full Name of the user";
|
|
};
|
|
email = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "me@dnsc.io";
|
|
description = "Full Name of the user";
|
|
};
|
|
};
|
|
}
|