Files
garandos/modules/core/xdg.nix
2025-11-19 20:14:19 +01:00

13 lines
225 B
Nix

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