summary refs log tree commit diff stats
path: root/system/impermanence/mods/mastodon.nix
blob: a5bdbfd302a48e8d44b790d7830ed100df0e7004 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{...}: {
  environment.persistence."/srv".directories = [
    {
      directory = "/var/lib/mastodon";
      user = "mastodon";
      group = "mastodon";
      mode = "0700";
    }
  ];
}