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.
This commit is contained in:
Jalil David Salamé Messina 2025-04-01 23:13:40 +02:00
parent 93eaa6d9f6
commit 89b845562c
Signed by: jalil
GPG key ID: F016B9E770737A0B

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