tvl-depot/web/tvl/blog/default.nix
Vincent Ambo e9a3a79a1a chore(web/tvl): publish Tvix update blog post
Change-Id: I165ea0d9df3d55e18371deade04e3239d0123c18
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10927
Reviewed-by: flokli <flokli@flokli.de>
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
2024-02-15 17:13:42 +00:00

35 lines
745 B
Nix

{ depot, ... }:
{
config = {
name = "TVL's blog";
footer = depot.web.tvl.footer { };
baseUrl = "https://tvl.fyi/blog";
};
posts = builtins.sort (a: b: a.date > b.date) [
{
key = "rewriting-nix";
title = "Tvix: We are rewriting Nix";
date = 1638381387;
content = ./rewriting-nix.md;
author = "tazjin";
}
{
key = "tvix-status-september-22";
title = "Tvix Status - September '22";
date = 1662995534;
content = ./tvix-status-202209.md;
author = "tazjin";
}
{
key = "tvix-update-february-24";
title = "Tvix Status - February '24";
date = 1707472132;
content = ./2024-02-tvix-update.md;
author = "flokli";
}
];
}