2025-05-04 02:47:36 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
|
|
|
cfg = config.modules.hyprland;
|
|
|
|
in {
|
2025-05-04 14:27:15 +02:00
|
|
|
options.modules.hyprland.enable = mkEnableOption "Enables Hyprland";
|
|
|
|
config.programs.hyprland = mkIf cfg.enable {
|
|
|
|
inherit (cfg) enable;
|
|
|
|
withUWSM = true;
|
2025-05-04 02:47:36 +02:00
|
|
|
};
|
|
|
|
}
|