nixos-config/modules/core/wayland.nix

13 lines
229 B
Nix
Raw Normal View History

2023-11-05 11:40:44 +01:00
{ inputs, pkgs, ... }:
{
programs.hyprland.enable = true;
xdg.portal = {
enable = true;
wlr.enable = true;
extraPortals = [
pkgs.xdg-desktop-portal-hyprland
# pkgs.xdg-desktop-portal-gtk
];
};
}