diff --git a/roles/home/zsh.nix b/roles/home/zsh.nix index fd2bca5..03c9dab 100644 --- a/roles/home/zsh.nix +++ b/roles/home/zsh.nix @@ -8,4 +8,10 @@ theme = "bira"; }; }; + + home.file.".bash_profile".text = '' + export SHELL=${pkgs.zsh}/bin/zsh + [ -f ''${HOME}/.bashrc ] && . ''${HOME}/.bashrc + exec ${pkgs.zsh}/bin/zsh + ''; }