diff options
author | Profpatsch <mail@profpatsch.de> | 2022-04-19T13·07+0200 |
---|---|---|
committer | Profpatsch <mail@profpatsch.de> | 2022-04-20T15·12+0000 |
commit | 535ad8732a688bf6ff4c48283d89dae00262a719 (patch) | |
tree | 78cc020e0ac1cf2e1d7a124375645ec73fd68060 /users/Profpatsch/blog/default.nix | |
parent | ea871fdcd754828c6d47dfd199a0d9b702d33f19 (diff) |
feat(users/Profpatsch/blog): Idealized Conflang blogpost r/3981
Change-Id: Iec01bc2a1a5ed5d21627ba1f9554ec4b3a8fc4ad Reviewed-on: https://cl.tvl.fyi/c/depot/+/5480 Tested-by: BuildkiteCI Reviewed-by: Profpatsch <mail@profpatsch.de>
Diffstat (limited to 'users/Profpatsch/blog/default.nix')
-rw-r--r-- | users/Profpatsch/blog/default.nix | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/users/Profpatsch/blog/default.nix b/users/Profpatsch/blog/default.nix index 44a7a21aa3c3..9848d83c5627 100644 --- a/users/Profpatsch/blog/default.nix +++ b/users/Profpatsch/blog/default.nix @@ -26,11 +26,11 @@ let # /notes/* notes = [ { - route = [ "notes" "preventing-oom" ]; - name = "Preventing out-of-memory (OOM) errors on Linux"; + route = [ "notes" "an-idealized-conflang" ]; + name = "An Idealized Configuration Language"; page = { cssFile }: markdownToHtml { - name = "preventing-oom"; - markdown = ./notes/preventing-oom.md; + name = "an-idealized-conflang"; + markdown = ./notes/an-idealized-conflang.md; inherit cssFile; }; } @@ -43,6 +43,15 @@ let inherit cssFile; }; } + { + route = [ "notes" "preventing-oom" ]; + name = "Preventing out-of-memory (OOM) errors on Linux"; + page = { cssFile }: markdownToHtml { + name = "preventing-oom"; + markdown = ./notes/preventing-oom.md; + inherit cssFile; + }; + } ]; projects = [ |