nixos-config/modules/system/services/general/portals/default.nix

7 lines
172 B
Nix

{ config, lib, pkgs, ... }:
{
xdg.portal.extraPortals = with pkgs; lib.mkIf config.system.desktop.enable [
xdg-desktop-portal-gnome
xdg-desktop-portal-wlr
];
}