diff options
author | stuebinm | 2022-01-27 01:08:07 +0100 |
---|---|---|
committer | stuebinm | 2022-01-27 01:08:07 +0100 |
commit | 7c39ebf750ccf6598d4a63481fb021e7b5217e86 (patch) | |
tree | 96cbef8e0fb0c6fc2951c02c5d89d34717bef948 /flora/services/blog.nix | |
parent | 8e20b9dffcaf89213a5f068a094aa48e6bce1c85 (diff) |
flora: remove last bit of impure evaluation
Diffstat (limited to '')
-rw-r--r-- | flora/services/blog.nix | 2 |
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; }; }; } |