nixos/hyprland: fix call to wayland-session.nix

Changed files
+1 -1
nixos
modules
programs
wayland
+1 -1
nixos/modules/programs/wayland/hyprland.nix
···
(import ./wayland-session.nix {
inherit lib pkgs;
enableXWayland = cfg.xwayland.enable;
-
enableWlrPortal = lib.mkDefault false; # Hyprland has its own portal, wlr is not needed
})
]
);
···
(import ./wayland-session.nix {
inherit lib pkgs;
enableXWayland = cfg.xwayland.enable;
+
enableWlrPortal = false; # Hyprland has its own portal, wlr is not needed
})
]
);