15 lines
No EOL
314 B
Nix
Executable file
15 lines
No EOL
314 B
Nix
Executable file
{ hostName, config, ... }:
|
|
|
|
{
|
|
users = {
|
|
users.wo2w = {
|
|
isNormalUser = true;
|
|
description = "${hostName}";
|
|
extraGroups = [ "networkmanager" "wheel" ];
|
|
|
|
# make new user logins (iso/vm/new machine) use a default password
|
|
initialPassword = "1234";
|
|
};
|
|
groups.wo2w = {};
|
|
};
|
|
} |