diff options
author | stuebinm | 2025-08-18 22:34:46 +0200 |
---|---|---|
committer | stuebinm | 2025-08-18 22:34:46 +0200 |
commit | b03cbcf51ebf859daaacbf81b82b875c40228eb7 (patch) | |
tree | 5b6236d920a27cb0bcde6b2beb9a7e7e83b81e8a /flora/services | |
parent | ebe144b05b22152adef560a9c59f0cb39474f922 (diff) |
(so that it can strip metadata)
Diffstat (limited to '')
-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}/"; }; } |