summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-11-22 08:15:06 -0500
committerGitHub <noreply@github.com>2022-11-22 08:15:06 -0500
commit7f53c76b85ce72c3d81cf2448d79e95a50ab57ed (patch)
tree0ca6c2a9a1f13af941f686db1e959bbc6667d34a
parentMerge pull request #191704 from NixOS/backport-190121-to-release-22.05 (diff)
parentnixos/mastodon: fix emoji import (diff)
downloadnixpkgs-7f53c76b85ce72c3d81cf2448d79e95a50ab57ed.tar.gz
Merge pull request #202177 from NixOS/backport-201354-to-release-22.05
[Backport release-22.05] nixos/mastodon: fix emoji import
-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 2f21776deddb..ccace9014ff7 100644
--- a/nixos/modules/services/web-apps/mastodon.nix
+++ b/nixos/modules/services/web-apps/mastodon.nix
@@ -639,7 +639,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;