fix: accidentally uninstalled alacritty #351

Merged
jalil merged 1 commit from push-rnlxnrntrmyx into main 2025-03-11 00:16:17 +01:00

View file

@ -108,8 +108,9 @@ in
return config return config
''; '';
}; };
alacritty.settings = { alacritty = {
enable = cfg.terminal == "alacritty"; enable = cfg.terminal == "alacritty";
settings = {
# hide mouse when typing, this ensures I don't have to move the mouse when it hides text # hide mouse when typing, this ensures I don't have to move the mouse when it hides text
mouse.hide_when_typing = true; mouse.hide_when_typing = true;
# Start zellij when it is enabled # Start zellij when it is enabled
@ -117,6 +118,7 @@ in
program = "${lib.getExe config.programs.zellij.package}"; 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
# PDF reader # PDF reader
zathura.enable = true; zathura.enable = true;