2024-05-21 21:53:46 +00:00
|
|
|
{ config, lib, ... }:
|
2023-10-22 16:48:48 +00:00
|
|
|
let
|
2024-05-13 20:33:16 +00:00
|
|
|
inherit (config.catppuccin) sources;
|
2023-10-22 16:48:48 +00:00
|
|
|
cfg = config.programs.glamour.catppuccin;
|
2023-11-02 17:55:47 +00:00
|
|
|
inherit (cfg) enable;
|
2023-10-22 16:48:48 +00:00
|
|
|
in
|
|
|
|
{
|
2024-06-28 16:29:30 +00:00
|
|
|
options.programs.glamour.catppuccin = lib.ctp.mkCatppuccinOpt { name = "glamour"; };
|
2023-10-22 16:48:48 +00:00
|
|
|
|
|
|
|
config = {
|
|
|
|
home.sessionVariables = lib.mkIf enable {
|
2024-05-22 00:23:55 +00:00
|
|
|
GLAMOUR_STYLE = "${sources.glamour}/themes/catppuccin-${cfg.flavor}.json";
|
2023-10-22 16:48:48 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|