kitty: fix diff.conf being generated regardless of user config

'cfg.diffConfig' is an implicit submodule with sub-options that carry
their own defaults, so it never actually equals `{ }` - the previous
`cfg.diffConfig != { }` check was always true. This caused
'kitty/diff.conf' to be written (and clobber any existing unmanaged file)
even when the user configured nothing under `programs.kitty.diffConfig`.
This commit is contained in:
Rachit Kumar Verma
2026-07-11 18:56:44 -05:00
committed by Austin Horstman
parent 0992a29487
commit 564bc37de5
4 changed files with 29 additions and 1 deletions
+1 -1
View File
@@ -433,7 +433,7 @@ in
'';
};
xdg.configFile."kitty/diff.conf" = mkIf (cfg.diffConfig != { }) {
xdg.configFile."kitty/diff.conf" = mkIf (cfg.diffConfig.extraConfig != "") {
text = ''
# Generated by Home Manager
# See https://sw.kovidgoyal.net/kitty/kittens/diff/