Files
dotfiles/config/modules/kitty.nix
T
2026-08-02 01:38:50 +01:00

28 lines
497 B
Nix

{
den,
modules,
...
}:
{
modules.kitty = {
homeManager = {
programs.kitty = {
enable = true;
font = {
name = "Google Sans Code Nerd Font";
size = 11;
};
settings = {
sync_to_monitor = "yes";
background_opacity = 0.6;
cursor_trail = 1;
auto_reload_config = -1;
input_delay = 1;
repaint_delay = 2;
wayland_enable_ime = "no";
};
};
};
};
}