2023-07-13 16:17:51 +00:00
|
|
|
{
|
2024-10-20 06:02:44 +00:00
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
inherit (config.rose-pine) sources;
|
2023-04-15 02:37:39 +00:00
|
|
|
|
2024-10-20 06:02:44 +00:00
|
|
|
cfg = config.programs.helix.rose-pine;
|
|
|
|
enable = cfg.enable && config.programs.helix.enable;
|
2023-07-13 16:17:51 +00:00
|
|
|
|
2024-10-20 06:02:44 +00:00
|
|
|
themeName =
|
|
|
|
if (cfg.flavor == "main")
|
|
|
|
then "rose_pine"
|
|
|
|
else "rose_pine_${cfg.flavor}";
|
|
|
|
in {
|
|
|
|
options.programs.helix.rose-pine = lib.rp.mkRosePineOpt {name = "helix";};
|
|
|
|
|
|
|
|
config = lib.mkIf enable {
|
|
|
|
programs.helix = {
|
|
|
|
settings = {
|
|
|
|
theme = themeName;
|
|
|
|
editor.color-modes = lib.mkDefault true;
|
2024-05-22 00:23:55 +00:00
|
|
|
};
|
2024-10-20 06:02:44 +00:00
|
|
|
|
|
|
|
themes."${themeName}" = lib.importTOML "${sources.helix}/${themeName}.toml";
|
|
|
|
};
|
2024-05-22 00:23:55 +00:00
|
|
|
};
|
2023-04-15 02:37:39 +00:00
|
|
|
}
|