From d7ec1e7bf5741bf44387d258f2187904c4196c3c Mon Sep 17 00:00:00 2001 From: chase Date: Wed, 14 May 2025 23:53:14 -0400 Subject: [PATCH] Enabled zsh system-wide --- configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configuration.nix b/configuration.nix index 144377c..d0e4716 100644 --- a/configuration.nix +++ b/configuration.nix @@ -109,6 +109,10 @@ # Allow unfree packages nixpkgs.config.allowUnfree = true; + # Install zsh + programs.zsh.enable = true; + users.defaultUserShell = pkgs.zsh; + # Define a user account. Don't forget to set a password with ‘passwd’. users.users.chase = { isNormalUser = true;