From 6d07a21e56a375331f6d268963ed451f0edb7206 Mon Sep 17 00:00:00 2001 From: mir Date: Tue, 28 May 2024 21:33:16 -0800 Subject: [PATCH] change user shell to zsh --- configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 2adefa4..66c4a05 100644 --- a/configuration.nix +++ b/configuration.nix @@ -67,16 +67,17 @@ # services.xserver.libinput.enable = true; # Define a user account. Don't forget to set a password with ‘passwd’. + programs.zsh.enable = true; users.users.mir = { isNormalUser = true; description = "Miranda Marquez"; extraGroups = [ "networkmanager" "wheel" "input" "audio" ]; + shell = pkgs.zsh; packages = with pkgs; [ # firefox # home-manager # thunderbird git - zsh gparted ntfs3g ];