11 lines
220 B
Nix
11 lines
220 B
Nix
{ pkgs, ... }: {
|
||
users.users.fleaz = {
|
||
isNormalUser = true;
|
||
extraGroups = [
|
||
"wheel" # Enable ‘sudo’ for the user.
|
||
"networkmanager" # Access to networkmanager
|
||
];
|
||
shell = pkgs.zsh;
|
||
};
|
||
}
|