feat(modules/users): add mainUser autologin

This commit is contained in:
Mohammad Rafiq 2025-05-18 17:17:24 +08:00
parent 7cf01bb2d5
commit 0a325b14c5
No known key found for this signature in database

View file

@ -5,10 +5,9 @@
users.users."${config.system.mainUser}" = { users.users."${config.system.mainUser}" = {
isNormalUser = true; isNormalUser = true;
initialPassword = "1"; initialPassword = "1";
extraGroups = [ extraGroups = [ "wheel" ];
"wheel"
];
}; };
services.getty.autologinUser = config.system.mainUser;
} }
]; ];
} }