about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorLeon <leon.erd@student.uibk.ac.at>2024-06-13 22:56:09 +0200
committerLeon <leon.erd@student.uibk.ac.at>2024-06-13 22:56:09 +0200
commit5b216845b6976077cf6b117107c9366bef561345 (patch)
tree523c60bd46f07a101313c286dea82c833c0c4788 /nixos/modules
parent9585e5d3aa0ad34b9e6a3bc2b3a1b4ca13befc85 (diff)
nixos/hyprland: use lib.mkDefault for enableWlrPortal
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/programs/wayland/hyprland.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/programs/wayland/hyprland.nix b/nixos/modules/programs/wayland/hyprland.nix
index 29bae526bb203..5a21bd153b632 100644
--- a/nixos/modules/programs/wayland/hyprland.nix
+++ b/nixos/modules/programs/wayland/hyprland.nix
@@ -71,7 +71,7 @@ in
     (import ./wayland-session.nix {
       inherit lib pkgs;
       enableXWayland = cfg.xwayland.enable;
-      enableWlrPortal = false; # Hyprland has its own portal, wlr is not needed
+      enableWlrPortal = lib.mkDefault false; # Hyprland has its own portal, wlr is not needed
     })
   ]);