diff options
author | stuebinm | 2023-02-16 21:47:09 +0100 |
---|---|---|
committer | stuebinm | 2023-02-16 21:47:41 +0100 |
commit | 78644e7fb3865524085a972e0bb3e6ead3ba39e2 (patch) | |
tree | dc1df47ea87aa755ffa2a3cca3b339734d47eb3c /flora | |
parent | a8ec7eca6cdfd1f9119897f4fe0bda261ae8dc72 (diff) |
further akkoma stuff because templating elixir hard
… why do we do that, again? But this module has no escape hatch, so I
guess I just spend ~twenty minutes on "how do i make an atom"
Diffstat (limited to 'flora')
-rw-r--r-- | flora/services/akkoma.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flora/services/akkoma.nix b/flora/services/akkoma.nix index 244351f..07a0e70 100644 --- a/flora/services/akkoma.nix +++ b/flora/services/akkoma.nix @@ -70,13 +70,13 @@ in redirect_on_failure = true; }; "Pleroma.Upload" = { - filters = [ + filters = map (pkgs.formats.elixirConf {}).lib.mkAtom [ "Pleroma.Upload.Filter.Exiftool" "Pleroma.Upload.Filter.AnonymizeFilename" "Pleroma.Upload.Filter.Dedupe" ]; }; - "Pleroma.Uploaders.Local".uploads = "/var/lib/akkoma/uploads"; + # "Pleroma.Uploaders.Local".uploads = "/var/lib/akkoma/uploads"; "Pleroma.Repo" = { adapter = "Ecto.Adapters.Postgres"; username = "pleroma"; |