2025-04-03 09:48:30 +00:00
|
|
|
{
|
2025-04-24 15:23:51 +00:00
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
modulesPath,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
{
|
|
|
|
users.users = {
|
|
|
|
# connection only via hashed password;
|
|
|
|
dev = {
|
|
|
|
isNormalUser = true;
|
|
|
|
home = "/home/dev";
|
|
|
|
description = "User used to manually connect to this system (e.g. for maintenance)";
|
|
|
|
extraGroups = [
|
|
|
|
"docker"
|
|
|
|
"wheel"
|
|
|
|
];
|
|
|
|
hashedPasswordFile = ./.;
|
2025-04-03 09:48:30 +00:00
|
|
|
};
|
2025-04-24 15:23:51 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|