2023-11-03 15:55:17 +00:00
|
|
|
{
|
2024-10-20 06:39:46 +00:00
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
inherit (config.rose-pine) sources;
|
|
|
|
|
|
|
|
cfg = config.wayland.windowManager.hyprland.rose-pine;
|
|
|
|
enable = cfg.enable && config.wayland.windowManager.hyprland.enable;
|
|
|
|
|
|
|
|
themeName =
|
|
|
|
if (cfg.flavor == "main")
|
|
|
|
then "rose-pine"
|
|
|
|
else "rose-pine-${cfg.flavor}";
|
|
|
|
in {
|
|
|
|
options.wayland.windowManager.hyprland.rose-pine =
|
|
|
|
lib.rp.mkRosePineOpt {name = "hyprland";}
|
2024-06-28 16:29:30 +00:00
|
|
|
// {
|
2024-10-20 06:39:46 +00:00
|
|
|
accent = lib.rp.mkAccentOpt "hyprland";
|
2024-06-28 16:29:30 +00:00
|
|
|
};
|
2023-11-03 15:55:17 +00:00
|
|
|
|
2024-06-10 22:28:46 +00:00
|
|
|
config = lib.mkIf enable {
|
|
|
|
wayland.windowManager.hyprland.settings = {
|
2024-10-08 16:59:36 +00:00
|
|
|
source = [
|
2024-10-20 06:39:46 +00:00
|
|
|
"${sources.hyprland}/${themeName}.conf"
|
|
|
|
# Define accent in file to ensure it appears before user vars
|
2024-10-08 16:59:36 +00:00
|
|
|
(builtins.toFile "hyprland-${cfg.accent}-accent.conf" ''
|
|
|
|
$accent = ''$${cfg.accent}
|
|
|
|
'')
|
|
|
|
];
|
2024-06-10 22:28:46 +00:00
|
|
|
};
|
2024-05-08 00:36:12 +00:00
|
|
|
};
|
2023-11-03 15:55:17 +00:00
|
|
|
}
|