2024-10-20 03:33:32 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
inherit (config.rose-pine) sources;
|
|
|
|
cfg = config.programs.fish.rose-pine;
|
2023-10-22 19:28:28 +00:00
|
|
|
enable = cfg.enable && config.programs.fish.enable;
|
|
|
|
|
2024-10-20 03:33:32 +00:00
|
|
|
themeName =
|
|
|
|
if (cfg.flavor == "main")
|
|
|
|
then "Rosé Pine"
|
|
|
|
else "Rosé Pine ${lib.rp.mkUpper cfg.flavor}";
|
2023-11-02 17:55:47 +00:00
|
|
|
themePath = "/themes/${themeName}.theme";
|
2024-10-20 03:33:32 +00:00
|
|
|
in {
|
|
|
|
options.programs.fish.rose-pine = lib.rp.mkRosePineOpt {name = "fish";};
|
2023-10-22 19:28:28 +00:00
|
|
|
|
2024-05-21 03:53:33 +00:00
|
|
|
config = lib.mkIf enable {
|
2023-11-03 17:25:24 +00:00
|
|
|
xdg.configFile."fish${themePath}".source = "${sources.fish}${themePath}";
|
2023-10-22 19:28:28 +00:00
|
|
|
|
|
|
|
programs.fish.shellInit = ''
|
|
|
|
fish_config theme choose "${themeName}"
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|