Compare commits
2 commits
e6ff86d6d7
...
7dab7eb1dc
Author | SHA1 | Date | |
---|---|---|---|
7dab7eb1dc | |||
6bf41fd880 |
1 changed files with 8 additions and 6 deletions
|
@ -108,13 +108,15 @@ in
|
||||||
return config
|
return config
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
alacritty.settings = {
|
alacritty = {
|
||||||
enable = cfg.terminal == "alacritty";
|
enable = cfg.terminal == "alacritty";
|
||||||
# hide mouse when typing, this ensures I don't have to move the mouse when it hides text
|
settings = {
|
||||||
mouse.hide_when_typing = true;
|
# hide mouse when typing, this ensures I don't have to move the mouse when it hides text
|
||||||
# Start zellij when it is enabled
|
mouse.hide_when_typing = true;
|
||||||
terminal.shell = lib.mkIf (config.jhome.dev.enable && config.programs.zellij.enable) {
|
# Start zellij when it is enabled
|
||||||
program = "${lib.getExe config.programs.zellij.package}";
|
terminal.shell = lib.mkIf (config.jhome.dev.enable && config.programs.zellij.enable) {
|
||||||
|
program = "${lib.getExe config.programs.zellij.package}";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
zellij.enable = cfg.terminal == "alacritty"; # alacritty has no terminal multiplexer built-in
|
zellij.enable = cfg.terminal == "alacritty"; # alacritty has no terminal multiplexer built-in
|
||||||
|
|
Loading…
Add table
Reference in a new issue