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

23 lines
485 B
Nix
Raw Normal View History

{
2024-10-20 13:04:49 -07:00
config,
lib,
...
}:
let
2024-10-20 13:04:49 -07:00
inherit (config.rose-pine) sources;
cfg = config.wayland.windowManager.sway.rose-pine;
enable = cfg.enable && config.wayland.windowManager.sway.enable;
theme = "${sources.sway}/themes/${lib.rp.getKebabTheme cfg.flavor}.theme";
in
{
options.wayland.windowManager.sway.rose-pine = lib.rp.mkRosePineOpt { name = "sway"; };
config = lib.mkIf enable {
wayland.windowManager.sway.extraConfigEarly = ''
include ${theme}
'';
};
}