diff options
| author | Mario Rodas <marsam@users.noreply.github.com> | 2022-11-22 08:15:06 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-22 08:15:06 -0500 |
| commit | 7f53c76b85ce72c3d81cf2448d79e95a50ab57ed (patch) | |
| tree | 0ca6c2a9a1f13af941f686db1e959bbc6667d34a | |
| parent | Merge pull request #191704 from NixOS/backport-190121-to-release-22.05 (diff) | |
| parent | nixos/mastodon: fix emoji import (diff) | |
| download | nixpkgs-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.nix | 2 |
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; |
