nixos-config/systemProfiles/services/xdg-portals.nix
2024-10-25 10:39:48 +02:00

11 lines
187 B
Nix

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