summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorstuebinm2021-03-11 23:50:20 +0100
committerstuebinm2021-03-11 23:50:20 +0100
commitf14b14fd7f2973f59395ccadde4c517924069e17 (patch)
tree78fbfa704877eb0dd3cb6fff88df83eb9636a818 /hosts
parent4b4aabf2b971c706bfcd82cef15b220e85e50179 (diff)
fix pleroma exiftool
Diffstat (limited to 'hosts')
-rw-r--r--hosts/flora/services/pleroma.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/hosts/flora/services/pleroma.nix b/hosts/flora/services/pleroma.nix
index 22a70c3..075908d 100644
--- a/hosts/flora/services/pleroma.nix
+++ b/hosts/flora/services/pleroma.nix
@@ -23,7 +23,7 @@ in
imports = [ "${sources.nixpkgs-unstable}/nixos/modules/services/networking/pleroma.nix" ];
# generating the manual will fail when mixing nixos channels,
# so disable it here or this won't build at all.
- documentation.enable = false;
+ documentation.enable = false;
# pleroma has a cli tool for configuration
environment.systemPackages = [ pkgs.pleroma-otp pkgs.dnsutils ];
@@ -91,6 +91,9 @@ in
'' ];
};
+
+ # otherwise, the exiftool will fail to run
+ systemd.services.pleroma.path = [ pkgs.exiftool ];
services.postgresql = {
enable = true;