This commit is contained in:
biscuit
2025-05-21 17:57:59 -05:00
parent c16cedf981
commit 0c99dfefbb
2 changed files with 8 additions and 3 deletions
+6 -3
View File
@@ -1,11 +1,14 @@
{pkgs, allowUnfree, ...}: {
{pkgs, termFont, ...}: {
programs.kitty.enable = true;
programs.kitty.settings = {
confirm_os_window_close = 0;
window_padding_width = 10;
font_size = 12.0;
font_family = if (allowUnfree == true) then
"Monolisa" else "JetBrainsMono Nerd Font";
font_family = termFont;
# optimization
input_delay = 0;
repaint_delay = 2;
sync_to_monitor = false;