27 lines
483 B
Nix
27 lines
483 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
let
|
||
|
inherit (lib) mkOption types;
|
||
|
in
|
||
|
|
||
|
{
|
||
|
options.users.primaryUser = {
|
||
|
username = mkOption {
|
||
|
type = with types; nullOr string;
|
||
|
default = null;
|
||
|
};
|
||
|
fullName = mkOption {
|
||
|
type = with types; nullOr string;
|
||
|
default = null;
|
||
|
};
|
||
|
email = mkOption {
|
||
|
type = with types; nullOr string;
|
||
|
default = null;
|
||
|
};
|
||
|
nixConfigDirectory = mkOption {
|
||
|
type = with types; nullOr string;
|
||
|
default = null;
|
||
|
};
|
||
|
};
|
||
|
}
|