tvl-depot/web/tvl/blog/default.nix
Vincent Ambo 8133fed255 feat(web/tvl/blog): Write Tvix introduction blog post
This post is intended to just let people know about the existence of
Tvix, tell them a bit about the background and how to follow along.

Change-Id: Ib5194d3aa385a0e30b4768ba28cb063784f6e0a3
2021-11-30 18:45:44 +03:00

19 lines
324 B
Nix

{ 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;
}
];
}