blob: f7d97f50dd01e1242c7ae9fd04fcabdb2842a792 [file] [log] [blame]
{ pkgs, ... }:
{
users.users.minion = {
isNormalUser = true;
extraGroups = [
"wheel"
"input"
];
initialPassword = "nixos";
};
users.users.coded = {
isNormalUser = true;
extraGroups = [
"wheel"
];
initialPassword = "nixos";
};
security.pam.services.waylock = { };
}