summary refs log tree commit diff stats
path: root/system/impermanence/mods/mastodon.nix
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-10-12 20:49:27 +0200
committersils <sils@sils.li>2023-10-12 20:49:27 +0200
commit631e9c0fc66e7c0493ea447dfcfcfca93ce0d72c (patch)
treedc4b8458023b7b459f1624c42dd8c3a5cf52470f /system/impermanence/mods/mastodon.nix
parentbuild(flake): update (diff)
downloadnixos-server-631e9c0fc66e7c0493ea447dfcfcfca93ce0d72c.tar.gz
nixos-server-631e9c0fc66e7c0493ea447dfcfcfca93ce0d72c.zip
feat(treewide): add mastodon
Diffstat (limited to '')
-rw-r--r--system/impermanence/mods/mastodon.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/system/impermanence/mods/mastodon.nix b/system/impermanence/mods/mastodon.nix
new file mode 100644
index 0000000..a5bdbfd
--- /dev/null
+++ b/system/impermanence/mods/mastodon.nix
@@ -0,0 +1,10 @@
+{...}: {
+  environment.persistence."/srv".directories = [
+    {
+      directory = "/var/lib/mastodon";
+      user = "mastodon";
+      group = "mastodon";
+      mode = "0700";
+    }
+  ];
+}