16 lines
287 B
Nix
16 lines
287 B
Nix
{config, pkgs, ...}:
|
|
|
|
{
|
|
users.users.giulio = {
|
|
description = "Giulio De Pasquale";
|
|
isNormalUser = true;
|
|
shell = pkgs.zsh;
|
|
extraGroups = [ "wheel" "docker" "networkmanager" ];
|
|
};
|
|
|
|
programs.zsh = {
|
|
enableBashCompletion = true;
|
|
enableCompletion = true;
|
|
};
|
|
}
|