about summary refs log blame commit diff
path: root/web/tvl/blog/default.nix
blob: 4aac1b73147d9f9ca3b3c7cf23955bedb7e7f03c (plain) (tree)
1
2
3
4
5
6
7
8
9


               

                        
                                      


                                     
                                                 
     

                                           
                        
                                   
                        
     





                                            
                        
     

    
{ depot, ... }:

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

  posts = builtins.sort (a: b: a.date > b.date) [
    {
      key = "rewriting-nix";
      title = "Tvix: We are rewriting Nix";
      date = 1638381387;
      content = ./rewriting-nix.md;
      author = "tazjin";
    }

    {
      key = "tvix-status-september-22";
      title = "Tvix Status - September '22";
      date = 1662995534;
      content = ./tvix-status-202209.md;
      author = "tazjin";
    }
  ];
}