Files
nixos/Droidnix/generated/system/applications/terminal_shell/kitty.nix
T
2026-03-07 22:53:44 +01:00

14 lines
264 B
Nix

{
xdg.enable = true;
programs.kitty = {
enable = true;
extraConfig = ''
# 1) Theme first (stable path)
include themes/Catppuccin-Mocha.conf
# 2) Force transparency last (wins)
#background_opacity 0.60
#dynamic_background_opacity yes
'';
};
}