diff --git a/users.nix b/users.nix index bc81747..342b984 100644 --- a/users.nix +++ b/users.nix @@ -3,11 +3,17 @@ { imports = [ ]; - users.users.giulio = { - description = "Giulio De Pasquale"; - isNormalUser = true; - shell = pkgs.zsh; - extraGroups = [ "wheel" "docker" "networkmanager" ]; + users.users = { + giulio = { + description = "Giulio De Pasquale"; + isNormalUser = true; + shell = pkgs.zsh; + extraGroups = [ "wheel" "docker" "networkmanager" ]; + }; + + root = { + shell = pkgs.zsh; + }; }; programs.zsh = {