1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2025-04-01 19:12:52 +00:00
parent 4c7342110c
commit a85f101876
No known key found for this signature in database
9 changed files with 21 additions and 64 deletions

View file

@ -0,0 +1,12 @@
{
config,
lib,
...
}: let
inherit (config.users) mainUser;
in {
users = {
mainUser = lib.mkForce "lukas";
users.${mainUser}.description = lib.mkForce "Lukas Wurzinger";
};
}