14 lines
264 B
Nix
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
|
|
'';
|
|
};
|
|
}
|