0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-12 05:16:25 +03:00

nixos/hyprland: fix call to wayland-session.nix (#394858)

This commit is contained in:
André Silva 2025-03-31 17:47:05 +01:00 committed by GitHub
commit 64ee43c568
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -115,7 +115,7 @@ in
(import ./wayland-session.nix { (import ./wayland-session.nix {
inherit lib pkgs; inherit lib pkgs;
enableXWayland = cfg.xwayland.enable; enableXWayland = cfg.xwayland.enable;
enableWlrPortal = lib.mkDefault false; # Hyprland has its own portal, wlr is not needed enableWlrPortal = false; # Hyprland has its own portal, wlr is not needed
}) })
] ]
); );