nixcfg/modules/common/users.nix
2025-05-30 01:51:13 -04:00

12 lines
261 B
Nix

{ config, pkgs, ... }:
{
users.users.regent = {
isNormalUser = true;
extraGroups = [ "docker" "wheel" ];
packages = with pkgs; [ tree ];
};
security.sudo.enable = true;
security.sudo.wheelNeedsPassword = false;
}