summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-10-12 21:54:21 +0200
committersils <sils@sils.li>2023-10-12 21:54:21 +0200
commit478437be715c965a4028693582bef650ce190198 (patch)
tree77ec0e1d3973cca93730fc7aa4f89c95ddfb5941
parentfix(system/services/mastodon): add nginx to group 'mastodon' (diff)
downloadnixos-server-478437be715c965a4028693582bef650ce190198.tar.gz
nixos-server-478437be715c965a4028693582bef650ce190198.zip
fix(system/services/mastodon): change string to list of string
-rw-r--r--system/services/mastodon/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/system/services/mastodon/default.nix b/system/services/mastodon/default.nix
index ea49fc5..fee472e 100644
--- a/system/services/mastodon/default.nix
+++ b/system/services/mastodon/default.nix
@@ -50,5 +50,7 @@ in {
     };
   };
 
-  users.groups.${config.services.mastodon.group}.members = config.services.nginx.user;
+  users.groups.${config.services.mastodon.group}.members = [
+    config.services.nginx.user
+  ];
 }