14 lines
208 B
Nix
14 lines
208 B
Nix
{ lib, ... }:
|
|
let
|
|
inherit (lib) types;
|
|
in
|
|
{
|
|
options = {
|
|
users.mainUser = lib.mkOption {
|
|
type = types.passwdEntry types.str;
|
|
description = ''
|
|
The main user.
|
|
'';
|
|
};
|
|
};
|
|
}
|