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>
15 lines
383 B
Nix
15 lines
383 B
Nix
{ config, lib, ... }:
|
|
let
|
|
inherit (lib) ctp;
|
|
inherit (config.catppuccin) sources;
|
|
|
|
cfg = config.programs.rio.catppuccin;
|
|
enable = cfg.enable && config.programs.rio.enable;
|
|
in
|
|
{
|
|
options.programs.rio.catppuccin = ctp.mkCatppuccinOpt "rio";
|
|
|
|
config = lib.mkIf enable {
|
|
programs.rio.settings = lib.importTOML "${sources.rio}/themes/catppuccin-${cfg.flavor}.toml";
|
|
};
|
|
}
|