c4dac42a4f
* chore: update ports Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * chore(modules): update file paths --------- Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: getchoo <48872998+getchoo@users.noreply.github.com> Co-authored-by: seth <getchoo@tuta.io>
13 lines
369 B
Nix
13 lines
369 B
Nix
{ config, lib, ... }:
|
|
let
|
|
inherit (config.catppuccin) sources;
|
|
cfg = config.programs.tofi.catppuccin;
|
|
enable = cfg.enable && config.programs.tofi.enable;
|
|
in
|
|
{
|
|
options.programs.tofi.catppuccin = lib.ctp.mkCatppuccinOpt "tofi";
|
|
|
|
config.programs.tofi = lib.mkIf enable {
|
|
settings = lib.ctp.fromINI (sources.tofi + "/themes/catppuccin-${cfg.flavor}");
|
|
};
|
|
}
|