nixos-config/modules/core/wayland.nix
2023-11-05 11:40:44 +01:00

13 lines
229 B
Nix

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