summary refs log tree commit diff stats
path: root/flatpak.nix
blob: 138a692a6841d1fcce04e5f115ab9bb9207e80d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  config,
  pkgs,
  ...
}: {
  services.flatpak.enable = true;
  fileSystems."/var/lib/flatpak" = {
    device = "/srv/flatpak";
    options = ["bind"];
  };
  #  xdg.portal = {
  #    enable = true;
  #    extraPortals = [pkgs.xdg-desktop-portal-gtk];
  #  };
}