diff options
author | stuebinm | 2021-03-11 23:50:20 +0100 |
---|---|---|
committer | stuebinm | 2021-03-11 23:50:20 +0100 |
commit | f14b14fd7f2973f59395ccadde4c517924069e17 (patch) | |
tree | 78fbfa704877eb0dd3cb6fff88df83eb9636a818 /hosts | |
parent | 4b4aabf2b971c706bfcd82cef15b220e85e50179 (diff) |
fix pleroma exiftool
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/flora/services/pleroma.nix | 5 |
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; |