nixos-config/modules/home/wms/programs/portals/default.nix

12 lines
269 B
Nix

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