add flatpak support for kidney

This commit is contained in:
xunuwu 2024-08-29 08:56:47 +00:00
parent 0eaf4dfd5a
commit 9b1cdfb2e3
No known key found for this signature in database
2 changed files with 15 additions and 0 deletions

View file

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