summary refs log tree commit diff stats
path: root/flatpak.nix
blob: fcc208d24ddeae67c93644d03231a41bdca8e7a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{
  config,
  pkgs,
  ...
}: {
  services.flatpak.enable = true;
  fileSystems."/var/lib/flatpak" = {
    device = "/srv/flatpak";
    options = ["bind"];
  };
}