Compare commits

..

1 commit

Author SHA1 Message Date
89b845562c
fix(zellij): set default shell
Some checks failed
/ check (push) Successful in 9s
/ check-renovaterc (push) Successful in 3s
/ build-packages (push) Successful in 14s
/ build-vm (push) Successful in 20s
/ report-size (push) Has been cancelled
For some reason it fails when trying to start bash.
2025-04-01 23:15:39 +02:00

View file

@ -35,6 +35,11 @@ in
];
programs = {
# Launch fish if shell is interactive (from https://wiki.nixos.org/wiki/Fish)
bash.interactiveShellInit = # bash
''
if [[ "$(${pkgs.procps}/bin/ps --no-header --pid=$PPID --format=comm)" != "fish" && -z "$BASH_EXECUTION_STRING" ]]; then shopt -q login_shell && LOGIN_OPTION='--login' || LOGIN_OPTION=""; exec ${pkgs.fish}/bin/fish "$LOGIN_OPTION"; fi
'';
# Default shell
fish.enable = true;
# Shell prompt