nixos/home/kitty.nix
2026-01-14 21:24:19 +01:00

16 lines
290 B
Nix

{ config, pkgs, ... }:
{
programs.kitty = {
enable = true;
themeFile = "Catppuccin-Mocha"; # Updated option name
settings = {
confirm_os_window_close = 0;
cursor_shape = "beam";
};
# extraConfig = ''
# include current-theme.conf
# '';
};
}