rose-pine-nix/modules/home-manager/mako.nix

34 lines
927 B
Nix
Raw Normal View History

2024-05-21 14:53:46 -07:00
{
config,
pkgs,
lib,
...
}:
let
2024-10-20 11:23:59 -07:00
inherit (config.rose-pine) sources;
cfg = config.services.mako.rose-pine;
enable = cfg.enable && config.services.mako.enable;
2024-10-20 11:23:59 -07:00
themeName = lib.rp.getKebabTheme cfg.flavor;
2024-10-20 11:23:59 -07:00
theme = lib.rp.fromINI (sources.mako + "/theme/${themeName}.theme");
# Settings that need to be extracted and put in extraConfig
extraConfigAttrs = lib.attrsets.getAttrs [ "urgency=high" ] theme;
in
{
options.services.mako.rose-pine = lib.rp.mkRosePineOpt { name = "mako"; };
2024-10-20 11:23:59 -07:00
# Will cause infinite recursion if config.services.mako is directly set as a
# whole.
config.services.mako = lib.mkIf enable {
backgroundColor = theme.background-color;
textColor = theme.text-color;
borderColor = theme.border-color;
progressColor = theme.progress-color;
2024-05-21 14:53:46 -07:00
extraConfig = builtins.readFile (
(pkgs.formats.ini { }).generate "mako-extra-config" extraConfigAttrs
2024-05-21 14:53:46 -07:00
);
};
}