9 lines
186 B
Nix
9 lines
186 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.users.danny = {
|
|
isNormalUser = true;
|
|
shell = pkgs.bash; # Actually fish
|
|
extraGroups = [ "wheel" "input" "networkmanager" "docker" ];
|
|
};
|
|
}
|