Compare commits

...

2 Commits

Author SHA1 Message Date
Giulio De Pasquale
da79b76e8d Merge branch 'master' of ssh://git.giugl.io/peperunas/nixos 2023-02-18 17:21:27 -08:00
Giulio De Pasquale
f4d67b9af7 zsh: Write .bash_profile to set zsh as default 2023-02-18 11:50:40 -08:00

View File

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