fix(zellij): set default shell
All checks were successful
/ check (push) Successful in 9s
/ check-renovaterc (push) Successful in 2s
/ build-packages (push) Successful in 14s
/ build-vm (push) Successful in 1s
/ report-size (push) Successful in 4s

For some reason it fails when trying to start bash.
This commit is contained in:
Jalil David Salamé Messina 2025-04-01 23:13:40 +02:00
parent 93eaa6d9f6
commit 40968edd0d
Signed by: jalil
GPG key ID: F016B9E770737A0B
2 changed files with 11 additions and 6 deletions

View file

@ -125,7 +125,17 @@ in
}; };
}; };
}; };
zellij.enable = cfg.terminal == "alacritty"; # alacritty has no terminal multiplexer built-in zellij = {
enable = cfg.terminal == "alacritty"; # alacritty has no terminal multiplexer built-in
# Set default shell
settings.default_shell =
if config.programs.fish.enable then
"fish"
else if config.programs.zsh.enable then
"zsh"
else
"bash";
};
# PDF reader # PDF reader
zathura.enable = true; zathura.enable = true;
# Auto start sway # Auto start sway

View file

@ -35,11 +35,6 @@ in
]; ];
programs = { 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 # Default shell
fish.enable = true; fish.enable = true;
# Shell prompt # Shell prompt