nixos/hosts/nixos/home/kitty.nix
2026-01-28 19:47:52 +01:00

12 lines
197 B
Nix

{ config, pkgs, ... }:
{
programs.kitty = {
enable = true;
themeFile = "Catppuccin-Mocha";
settings = {
confirm_os_window_close = 0;
cursor_shape = "beam";
};
};
}