From 71dcd216f00e64c2215edb49b37b68e012be71d2 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Fri, 19 Feb 2021 18:48:35 +0000 Subject: [PATCH] modules: users: use zsh as shell --- modules/users.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;