nix-config/system/desktop/hyprland.nix

15 lines
270 B
Nix
Raw Normal View History

2025-05-04 02:47:36 +02:00
{
config,
lib,
...
}:
with lib; let
2025-08-15 21:33:22 +02:00
cfg = config.mySystem.desktop.hyprland;
2025-05-04 02:47:36 +02:00
in {
2025-08-15 21:33:22 +02:00
options.mySystem.desktop.hyprland.enable = mkEnableOption "Enables Hyprland";
config.programs.hyprland = mkIf cfg.enable {
inherit (cfg) enable;
withUWSM = true;
2025-05-04 02:47:36 +02:00
};
}