summary refs log tree commit diff stats
path: root/sys/services/flatpak/default.nix
blob: 47f50b8cc6a43db1a2d64ae177ae78495bca067a (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];
  #  };
}