about summary refs log tree commit diff
path: root/web/tvl/blog/default.nix
blob: fe8d1c42d6dd3c352c488b188d2f4a0960d92213 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ depot, ... }:

{
  config = {
    name = "TVL's blog";
    footer = depot.web.tvl.footer {};
    baseUrl = "https://tvl.fyi/blog";
  };

  posts = [
    {
      key = "rewriting-nix";
      title = "Tvix: We are rewriting Nix";
      date = 1638381387;
      content = ./rewriting-nix.md;
    }
  ];
}