Files
nixos/henrovnix_ok/home/dev/kitty.nix
T
2026-03-02 13:37:55 +01:00

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
'';
};
}