From d66f5362cb1c0e3c106e1c24f2fb24e7ff3aded6 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 5 Apr 2023 18:00:00 +0100 Subject: [PATCH] fix(zsh): set zsh as the default shell --- system/nixos/nixedo/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/system/nixos/nixedo/configuration.nix b/system/nixos/nixedo/configuration.nix index 30a40e5..c63a96c 100644 --- a/system/nixos/nixedo/configuration.nix +++ b/system/nixos/nixedo/configuration.nix @@ -132,5 +132,10 @@ system.stateVersion = "22.11"; # Did you read the comment? virtualisation.docker.enable = true; + + programs.zsh.enable = true; + programs.zsh.histSize = 5000; + + users.defaultUserShell = "/etc/profiles/per-user/opdavies/bin/zsh"; }