12 lines
261 B
Nix
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;
|
|
}
|
|
|