fix(zellij): set default shell
For some reason it fails when trying to start bash.
This commit is contained in:
parent
93eaa6d9f6
commit
89b845562c
1 changed files with 11 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue