nixos-config/modules/home/kitty.nix
2025-07-20 13:02:43 -04:00

12 lines
No EOL
198 B
Nix

{ config, ... }:
{
programs.kitty = {
enable = true;
settings = {
tab_bar_style = "powerline";
tab_powerline_style = "round";
confirm_os_window_close = -1;
};
};
}