nixfleet/modules/xdg/default.nix

20 lines
417 B
Nix

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