1
0
Fork 0
puter/modules/main-user.nix

15 lines
208 B
Nix
Raw Normal View History

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.
'';
};
};
}