blob: 0cc610818b20d3aec1931d3338a6c7df43b844d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
{pkgs, ...}: {
services.flatpak.enable = true;
fileSystems."/var/lib/flatpak" = {
device = "/srv/flatpak";
options = ["bind"];
};
xdg.portal = {
enable = true;
extraPortals = [pkgs.xdg-desktop-portal-gtk];
};
}
|