diff options
Diffstat (limited to 'flora/services/blog.nix')
-rw-r--r-- | flora/services/blog.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/flora/services/blog.nix b/flora/services/blog.nix index e8335b1..9a9339c 100644 --- a/flora/services/blog.nix +++ b/flora/services/blog.nix @@ -39,7 +39,9 @@ in services.nginx.virtualHosts."stuebinm.eu" = { enableACME = true; forceSSL = true; - locations."/".root = import inputs.blog { inherit pkgs; }; + locations."/".root = (import inputs.blog { inherit pkgs; }).overrideAttrs (old: { + buildInputs = old.buildInputs ++ [ pkgs.exiftool ]; + }); locations."/bookshelf/".alias = "${gtfsBooks.outPath}/"; }; } |