{ config, lib, ... }: let inherit (config.catppuccin) sources; cfg = config.programs.waybar.catppuccin; enable = cfg.enable && config.programs.waybar.enable; styleFile = "${sources.waybar}/themes/${cfg.flavor}.css"; in { options.programs.waybar.catppuccin = lib.ctp.mkCatppuccinOpt { name = "waybar"; } // { mode = lib.mkOption { type = lib.types.enum [ "prependImport" "createLink" ]; default = "prependImport"; description = '' Defines how to include the catppuccin theme css file: - `prependImport`: Prepends the import statement, if `programs.waybar.style` is a string (with default override priority). - `createLink`: Creates a symbolic link `~/.config/waybar/catppuccin.css`, which needs to be included in the waybar stylesheet. ''; }; }; config = lib.mkIf enable ( lib.mkMerge [ (lib.mkIf (cfg.mode == "prependImport") { programs.waybar.style = lib.mkBefore '' @import "${styleFile}"; ''; }) (lib.mkIf (cfg.mode == "createLink") { xdg.configFile."waybar/catppuccin.css".source = styleFile; }) ] ); }