blob: 58c28df3c09811531a0d47ac31b1cf55d2da3afc [file] [log] [blame]
{ pkgs, ... }:
{
users.users.minion = {
isNormalUser = true;
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
packages = [
pkgs.firefox
pkgs.tree
];
initialPassword = "nixos";
};
security.pam.services.waylock = { };
}