nix-config/system/desktop/hyprland.nix

15 lines
266 B
Nix
Raw Permalink Normal View History

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