style: format 0047cf5

This commit is contained in:
github-actions[bot] 2024-08-23 10:53:42 +00:00
parent 0047cf5816
commit 3e844a65a4

View file

@ -24,11 +24,13 @@ in
transparent = lib.mkEnableOption "transparent version of flavor"; transparent = lib.mkEnableOption "transparent version of flavor";
}; };
config = lib.mkIf enable (lib.mkMerge [ config = lib.mkIf enable (
lib.mkMerge [
(lib.mkIf (!enableXdgConfig) { (lib.mkIf (!enableXdgConfig) {
home.file."Library/Application Support/${themePath}".source = theme; home.file."Library/Application Support/${themePath}".source = theme;
}) })
(lib.mkIf enableXdgConfig { xdg.configFile.${themePath}.source = theme; }) (lib.mkIf enableXdgConfig { xdg.configFile.${themePath}.source = theme; })
{ programs.k9s.settings.k9s.ui.skin = themeName; } { programs.k9s.settings.k9s.ui.skin = themeName; }
]); ]
);
} }