nixos-config/modules/core/wayland.nix
2024-06-25 10:41:15 +02:00

18 lines
332 B
Nix

{ inputs, pkgs, ... }:
{
programs.hyprland.enable = true;
xdg.portal = {
enable = true;
wlr.enable = true;
xdgOpenUsePortal = true;
extraPortals = [
pkgs.xdg-desktop-portal-hyprland
pkgs.xdg-desktop-portal-gtk
];
};
environment.systemPackages = with pkgs; [
# xwaylandvideobridge
];
}