Compare commits
1 commit
40968edd0d
...
89b845562c
Author | SHA1 | Date | |
---|---|---|---|
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
|
||||
zathura.enable = true;
|
||||
# Auto start sway
|
||||
|
|
Loading…
Add table
Reference in a new issue