nix-config/modules/wayland.nix

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
];
};
}