diff options
Diffstat (limited to '')
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | flake.lock | 2 | ||||
-rw-r--r-- | flora/services/blog.nix | 2 |
3 files changed, 3 insertions, 2 deletions
@@ -1,2 +1,3 @@ result secrets.nix +.deploy-gc @@ -15,7 +15,7 @@ "blog": { "flake": false, "locked": { - "narHash": "sha256-k+WltwE5qOjVki42V2vm/9EydrwkSKg2UeigkfOik0c=", + "narHash": "sha256-dNY2Y7BSindYcm1M3pO+m25voAes8jpy+CbOYhw0DP8=", "path": "/home/stuebinm/Dokumente/blog", "type": "path" }, 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; }; }; } |