diff options
Diffstat (limited to 'machines/work.nix')
| -rw-r--r-- | machines/work.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/machines/work.nix b/machines/work.nix index 231028a..bf9c4e0 100644 --- a/machines/work.nix +++ b/machines/work.nix @@ -38,6 +38,8 @@ pkgs.python311 pkgs.mpv pkgs.kubelogin + pkgs.zsh + pkgs.bashInteractive ]; hm.home.sessionPath = [ "/opt/homebrew/bin" @@ -129,8 +131,10 @@ # The platform the configuration will be used on. nixpkgs.hostPlatform = "aarch64-darwin"; users.users.${ivi.username} = { - shell = pkgs.bashInteractive; + shell = pkgs.zsh; }; - environment.shells = [pkgs.bashInteractive]; + environment.shells = [pkgs.bashInteractive pkgs.zsh]; + environment.pathsToLink = [ "/share/zsh" ]; + programs.zsh.enable = true; }; } |
