2024-05-21 21:53:46 +00:00
|
|
|
{ config, lib, ... }:
|
2023-11-02 16:05:02 +00:00
|
|
|
let
|
2024-05-13 20:33:16 +00:00
|
|
|
inherit (config.catppuccin) sources;
|
2023-11-02 16:05:02 +00:00
|
|
|
cfg = config.programs.micro.catppuccin;
|
|
|
|
enable = cfg.enable && config.programs.micro.enable;
|
|
|
|
|
2024-05-22 00:23:55 +00:00
|
|
|
themePath = "catppuccin-${cfg.flavor}.micro";
|
2023-11-02 16:05:02 +00:00
|
|
|
in
|
|
|
|
{
|
2024-06-28 16:29:30 +00:00
|
|
|
options.programs.micro.catppuccin = lib.ctp.mkCatppuccinOpt { name = "micro"; };
|
2023-11-02 16:05:02 +00:00
|
|
|
|
|
|
|
config = lib.mkIf enable {
|
|
|
|
programs.micro.settings.colorscheme = lib.removeSuffix ".micro" themePath;
|
|
|
|
|
2023-11-03 17:25:24 +00:00
|
|
|
xdg.configFile."micro/colorschemes/${themePath}".source = "${sources.micro}/src/${themePath}";
|
2023-11-02 16:05:02 +00:00
|
|
|
};
|
|
|
|
}
|