2023-07-13 16:17:51 +00:00
|
|
|
{
|
2024-10-19 18:15:31 +00:00
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
inherit (config.rose-pine) sources;
|
|
|
|
cfg = config.programs.alacritty.rose-pine;
|
|
|
|
enable = cfg.enable && config.programs.alacritty.enable;
|
|
|
|
in {
|
|
|
|
options.programs.alacritty.rose-pine = lib.rp.mkRosePineOpt {name = "alacritty";};
|
2023-04-15 23:48:38 +00:00
|
|
|
|
2024-01-11 21:23:27 +00:00
|
|
|
config = lib.mkIf enable {
|
2024-10-19 18:15:31 +00:00
|
|
|
programs.alacritty.settings =
|
|
|
|
if (cfg.flavor == "main")
|
|
|
|
then lib.importTOML "${sources.alacritty}/dist/rose-pine.toml"
|
|
|
|
else lib.importTOML "${sources.alacritty}/dist/rose-pine-${cfg.flavor}.toml";
|
2024-01-11 21:23:27 +00:00
|
|
|
};
|
2023-04-15 23:48:38 +00:00
|
|
|
}
|