rose-pine-nix/modules/home-manager/foot.nix
2024-04-16 23:14:17 -04:00

15 lines
349 B
Nix

{ config
, lib
, sources
, ...
}:
let
cfg = config.programs.foot.catppuccin;
enable = cfg.enable && config.programs.foot.enable;
theme = lib.ctp.fromINI (sources.foot + /catppuccin-${cfg.flavour}.ini);
in
{
options.programs.foot.catppuccin = lib.ctp.mkCatppuccinOpt "foot";
config.programs.foot = lib.mkIf enable { settings = theme; };
}