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