nix on git yippee
This commit is contained in:
commit
981186a787
17 changed files with 579 additions and 0 deletions
12
modules/common/users.nix
Normal file
12
modules/common/users.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
users.users.regent = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "docker" "wheel" ];
|
||||
packages = with pkgs; [ tree ];
|
||||
};
|
||||
|
||||
security.sudo.enable = true;
|
||||
security.sudo.wheelNeedsPassword = false;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue