nix-config/programs/hyprland.nix

15 lines
252 B
Nix
Raw Normal View History

2025-05-04 02:47:36 +02:00
{
config,
lib,
...
}:
with lib; let
cfg = config.modules.hyprland;
in {
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
};
}