tvl-depot/web/tvl/blog/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
324 B
Nix
Raw Normal View History

{ 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 = 1636038556;
content = ./rewriting-nix.md;
draft = true;
}
];
}