puter/modules/main-user.nix

13 lines
206 B
Nix
Raw Normal View History

2024-12-01 03:05:16 +00:00
{lib, ...}: let
inherit (lib) types;
in {
options = {
users.mainUser = lib.mkOption {
type = types.passwdEntry types.str;
description = ''
The main user.
'';
};
};
}