nixos-config/modules/core/wayland.nix

14 lines
248 B
Nix
Raw Normal View History

2024-06-21 09:39:23 +02:00
{ pkgs, ... }:
2023-11-05 11:40:44 +01:00
{
programs.hyprland.enable = true;
xdg.portal = {
enable = true;
wlr.enable = true;
2023-11-12 21:24:50 +01:00
xdgOpenUsePortal = true;
2023-11-05 11:40:44 +01:00
extraPortals = [
pkgs.xdg-desktop-portal-hyprland
2023-11-12 21:24:50 +01:00
pkgs.xdg-desktop-portal-gtk
2023-11-05 11:40:44 +01:00
];
};
}