Skip to content

Commit

Permalink
Added missing parentheses
Browse files Browse the repository at this point in the history
Co-authored-by: seth <getchoo@tuta.io>
  • Loading branch information
alejandro-angulo and getchoo authored Aug 20, 2024
1 parent a9437b0 commit b3f535f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/home-manager/k9s.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ in
transparent = lib.mkEnableOption "transparent version of flavor";
};

config = lib.mkIf enable lib.mkMerge [
config = lib.mkIf enable (lib.mkMerge [
(lib.mkIf (!enableXdgConfig) {
home.file."Library/Application Support/${themePath}".source = theme;
})
(lib.mkIf enableXdgConfig { xdg.configFile.${themePath}.source = theme; })
{ programs.k9s.settings.k9s.ui.skin = themeName; }
];
]);
}

0 comments on commit b3f535f

Please sign in to comment.