modules: users: use zsh as shell
This commit is contained in:
parent
01b6947cde
commit
71dcd216f0
|
@ -1,5 +1,5 @@
|
||||||
# User setup
|
# User setup
|
||||||
{ config, ... }:
|
{ config, pkgs, ... }:
|
||||||
let
|
let
|
||||||
my = config.my;
|
my = config.my;
|
||||||
in
|
in
|
||||||
|
@ -12,6 +12,7 @@ in
|
||||||
hashedPassword = my.secrets.users.ambroisie.hashedPassword;
|
hashedPassword = my.secrets.users.ambroisie.hashedPassword;
|
||||||
description = "Bruno BELANYI";
|
description = "Bruno BELANYI";
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
|
shell = pkgs.zsh;
|
||||||
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
||||||
openssh.authorizedKeys.keys = with builtins; let
|
openssh.authorizedKeys.keys = with builtins; let
|
||||||
keyDir = ./ssh;
|
keyDir = ./ssh;
|
||||||
|
|
Loading…
Reference in a new issue