Enabled zsh system-wide

This commit is contained in:
2025-05-14 23:53:14 -04:00
parent c83087cc8d
commit d7ec1e7bf5

View File

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