From 9b7058afef126826b9501ef51e1282bf7c7e15c1 Mon Sep 17 00:00:00 2001 From: mat ess Date: Sat, 27 Aug 2022 23:05:08 -0400 Subject: [PATCH] Fix brace --- content/posts/static-site-with-nix-and-caddy/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/static-site-with-nix-and-caddy/index.md b/content/posts/static-site-with-nix-and-caddy/index.md index 89e1ab5..5f3e1fb 100644 --- a/content/posts/static-site-with-nix-and-caddy/index.md +++ b/content/posts/static-site-with-nix-and-caddy/index.md @@ -192,7 +192,7 @@ stdenv.mkDerivation { # install the Hugo output cp -r public $out ''; -) +} ``` If we need to build any other auxiliary outputs, like Docker images (hint!), we can add them here. For now, let's just save our progress: