nixos-config/sys/profiles/services/xdg-portals.nix
2025-01-16 10:08:58 +01:00

11 lines
180 B
Nix

{pkgs, ...}: {
xdg.portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
];
config = {
common.default = ["gtk"];
};
};
}