8133fed255
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
19 lines
324 B
Nix
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;
|
|
}
|
|
];
|
|
}
|