Files
home-manager/tests/modules/programs/kitty/default.nix
T
Rachit Kumar VermaandAustin Horstman 564bc37de5 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`.
2026-07-11 18:56:44 -05:00

10 lines
411 B
Nix

{
kitty-example-settings = ./example-settings.nix;
kitty-theme-to-themeFile = ./theme-to-themeFile.nix;
kitty-null-shellIntegration = ./null-shellIntegration.nix;
kitty-example-mkOrder = ./example-mkOrder.nix;
kitty-example-quickAccessTerminalConfig = ./example-quickAccessTerminalConfig.nix;
kitty-auto-theme-files = ./auto-theme-files.nix;
kitty-example-diffConfig = ./example-diffConfig.nix;
}