summary refs log tree commit diff stats
path: root/flatpak.nix
blob: 73352a69a5be29113eb9c5f479ab314e98305d5e (plain) (blame)
1
2
3
4
5
6
7
8
9
{ config, pkgs, ... }:

{
        services.flatpak.enable = true;
        fileSystems."/var/lib/flatpak" = {
                device = "/srv/flatpak";
                options = [ "bind" ];
        };
}