summaryrefslogtreecommitdiff
path: root/flora/services/blog.nix
diff options
context:
space:
mode:
authorstuebinm2022-01-27 01:08:07 +0100
committerstuebinm2022-01-27 01:08:07 +0100
commit7c39ebf750ccf6598d4a63481fb021e7b5217e86 (patch)
tree96cbef8e0fb0c6fc2951c02c5d89d34717bef948 /flora/services/blog.nix
parent8e20b9dffcaf89213a5f068a094aa48e6bce1c85 (diff)
flora: remove last bit of impure evaluation
Diffstat (limited to 'flora/services/blog.nix')
-rw-r--r--flora/services/blog.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flora/services/blog.nix b/flora/services/blog.nix
index 056a63b..0111f8f 100644
--- a/flora/services/blog.nix
+++ b/flora/services/blog.nix
@@ -4,6 +4,6 @@
services.nginx.virtualHosts."stuebinm.eu" = {
enableACME = true;
forceSSL = true;
- locations."/".root = (import inputs.blog);
+ locations."/".root = import inputs.blog { inherit pkgs; };
};
}