about summary refs log tree commit diff
path: root/nixos/modules/services/web-apps
diff options
context:
space:
mode:
authorIzorkin <izorkin@elven.pw>2022-11-15 21:45:22 +0300
committerManuel Bärenz <programming@manuelbaerenz.de>2022-11-21 11:43:28 +0100
commit17933082cc2c62fb64131764fd38af7577b3a1a2 (patch)
treefe77cce82e692975399532c6852da9b8f8e9487b /nixos/modules/services/web-apps
parentc107fb66da7c150110fe301c38932eeccf5f9824 (diff)
nixos/mastodon: fix emoji import
Diffstat (limited to 'nixos/modules/services/web-apps')
-rw-r--r--nixos/modules/services/web-apps/mastodon.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/web-apps/mastodon.nix b/nixos/modules/services/web-apps/mastodon.nix
index d159d2ade0630..1e9e04dcc0558 100644
--- a/nixos/modules/services/web-apps/mastodon.nix
+++ b/nixos/modules/services/web-apps/mastodon.nix
@@ -688,7 +688,7 @@ in {
           inherit (cfg) group;
         };
       })
-      (lib.attrsets.setAttrByPath [ cfg.user "packages" ] [ cfg.package mastodonEnv ])
+      (lib.attrsets.setAttrByPath [ cfg.user "packages" ] [ cfg.package mastodonEnv pkgs.imagemagick ])
     ];
 
     users.groups.${cfg.group}.members = lib.optional cfg.configureNginx config.services.nginx.user;