Files
nixos/Droidnix/generated/system/applications/terminal_shell/kitty.nix
T

15 lines
303 B
Nix

{ config, pkgs, lib, flakeRoot, ... }:
{
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
'';
};
}