nix-config/modules/wayland.nix
2024-10-15 10:44:53 +02:00

11 lines
222 B
Nix

{ inputs, pkgs, ... }: {
programs.hyprland.enable = true;
xdg.portal = {
enable = true;
wlr.enable = true;
xdgOpenUsePortal = true;
extraPortals = [
pkgs.xdg-desktop-portal-hyprland
];
};
}