236b2bcd74
Change-Id: I6f69507c75436e882f2248430eb894b1310bfca8
18 lines
304 B
Nix
18 lines
304 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 = 1638381387;
|
|
content = ./rewriting-nix.md;
|
|
}
|
|
];
|
|
}
|