nixos-config/modules/home/kitty.nix
2025-07-25 10:55:20 -04:00

12 lines
No EOL
198 B
Nix
Executable file

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