modules: users: use zsh as shell

This commit is contained in:
Bruno BELANYI 2021-02-19 18:48:35 +00:00
parent 01b6947cde
commit 71dcd216f0
1 changed files with 2 additions and 1 deletions

View File

@ -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;