nix-config/modules/user-stop-box/user.nix
Grigory Shipunov 62b9aa6cbd
Remove dead code (#10)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2022-06-27 20:59:16 +02:00

15 lines
270 B
Nix

{ ... }:
{
users.mutableUsers = true;
users.users.tramwarrior = {
extraGroups = [ "wheel" "plugdev" ];
group = "users";
home = "/home/tramwarrior";
isNormalUser = true;
createHome = true;
initialPassword = "changeme";
uid = 1000;
};
}