15 lines
385 B
Nix
Executable File
15 lines
385 B
Nix
Executable File
{pkgs, allowUnfree, ...}: {
|
|
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";
|
|
input_delay = 0;
|
|
repaint_delay = 2;
|
|
sync_to_monitor = false;
|
|
wayland_enable_ime = false;
|
|
};
|
|
}
|