diff --git a/modules/users.nix b/modules/users.nix index 80b9bad..a67d725 100644 --- a/modules/users.nix +++ b/modules/users.nix @@ -1,5 +1,5 @@ # User setup -{ config, ... }: +{ config, pkgs, ... }: let my = config.my; in @@ -12,6 +12,7 @@ in hashedPassword = my.secrets.users.ambroisie.hashedPassword; description = "Bruno BELANYI"; isNormalUser = true; + shell = pkgs.zsh; extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. openssh.authorizedKeys.keys = with builtins; let keyDir = ./ssh;