mirror of
https://github.com/nix-community/home-manager.git
synced 2026-06-05 21:02:51 +00:00
27 lines
714 B
Nix
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$"
|
|
];
|
|
};
|
|
}
|