Fix xdg-portals

This commit is contained in:
2025-09-02 22:44:10 +03:00
parent 9710fbf69c
commit 8b220c3657
2 changed files with 8 additions and 3 deletions

View File

@@ -122,7 +122,7 @@ in
drivers = with pkgs; [
gutenprint
];
cups-pdf.enable = true;
cups-pdf.enable = lib.mkDefault true;
browsing = lib.mkDefault true;
};
@@ -192,5 +192,10 @@ in
};
};
xdg.portal.enable = true;
xdg.portal.enable = lib.mkDefault true;
xdg.portal.extraPortals = lib.mkDefault [
pkgs.kdePackages.xdg-desktop-portal-kde
pkgs.xdg-desktop-portal-gnome
];
xdg.portal.config.common.default = lib.mkDefault "*";
}