14 lines
381 B
Nix
14 lines
381 B
Nix
{ config, lib, ... }:
|
|
let
|
|
inherit (config.catppuccin) sources;
|
|
|
|
cfg = config.programs.foot.catppuccin;
|
|
enable = cfg.enable && config.programs.foot.enable;
|
|
in
|
|
{
|
|
options.programs.foot.catppuccin = lib.ctp.mkCatppuccinOpt { name = "foot"; };
|
|
|
|
config.programs.foot = lib.mkIf enable {
|
|
settings.main.include = sources.foot + "/themes/catppuccin-${cfg.flavor}.ini";
|
|
};
|
|
}
|