This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

last fix

Jakob Ankarhem (Jun 8, 2026, 2:22 PM +0200) dd3705a6 872d2cf0

+4 -2
+4 -2
content/posts/deploying-this-blog.md
··· 129 129 The blog itself is a flake input in `nix-config`: 130 130 131 131 ```nix 132 - blog.url = "git+https://github.com/ankarhem/site?submodules=1"; 132 + blog.url = "git+https://github.com/ankarhem/site"; 133 133 ``` 134 134 135 - The `?submodules=1` is needed because the theme is a git submodule and nix-config needs to actually build the blog package when evaluating the module. 135 + {% alert(type="info", title="No ?submodules=1 needed") %} 136 + The blog's flake already declares `inputs.self.submodules = true`. Since Nix 2.27, this is respected when the flake is consumed as an input. No need to pass `?submodules=1` on the URL. We can't use github:ankarhem/site syntax though, as that doesn't support submodules. 137 + {% end %} 136 138 137 139 ## The GitHub Actions workflow 138 140