2021-07-01 01:02:55 +01:00
|
|
|
{config, pkgs, ...}:
|
|
|
|
|
|
|
|
{
|
|
|
|
users.users.giulio = {
|
2021-07-01 01:28:12 +01:00
|
|
|
description = "Giulio De Pasquale";
|
2021-07-01 01:02:55 +01:00
|
|
|
isNormalUser = true;
|
|
|
|
shell = pkgs.zsh;
|
2021-07-01 01:53:43 +01:00
|
|
|
extraGroups = [ "wheel" "docker" "networkmanager" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.zsh = {
|
|
|
|
enableBashCompletion = true;
|
|
|
|
enableCompletion = true;
|
2021-07-01 01:02:55 +01:00
|
|
|
};
|
|
|
|
}
|