summaryrefslogtreecommitdiff
path: root/flora
diff options
context:
space:
mode:
authorstuebinm2025-08-18 22:34:46 +0200
committerstuebinm2025-08-18 22:34:46 +0200
commitb03cbcf51ebf859daaacbf81b82b875c40228eb7 (patch)
tree5b6236d920a27cb0bcde6b2beb9a7e7e83b81e8a /flora
parentebe144b05b22152adef560a9c59f0cb39474f922 (diff)
update sources & override blog inputsHEADmain
(so that it can strip metadata)
Diffstat (limited to 'flora')
-rw-r--r--flora/services/blog.nix4
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}/";
};
}