Files
home-manager/tests/modules/programs/kitty/auto-theme-files.nix
2026-04-13 22:02:40 -05:00

27 lines
714 B
Nix

{
programs.kitty = {
enable = true;
autoThemeFiles = {
light = "GitHub";
dark = "TokyoNight";
noPreference = "OneDark";
};
};
test = {
assertFileExists = [
"home-files/.config/kitty/light-theme.auto.conf"
"home-files/.config/kitty/dark-theme.auto.conf"
"home-files/.config/kitty/no-preference-theme.auto.conf"
];
assertFileRegex = [
"home-files/.config/kitty/light-theme.auto.conf"
"^include .*themes/GitHub\\.conf$"
"home-files/.config/kitty/dark-theme.auto.conf"
"^include .*themes/TokyoNight\\.conf$"
"home-files/.config/kitty/no-preference-theme.auto.conf"
"^include .*themes/OneDark\\.conf$"
];
};
}