Change-Id: I97caa794a2573f7b34f25030c84b5531a9136c44 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12170 Tested-by: BuildkiteCI Reviewed-by: benjaminedwardwebb <benjaminedwardwebb@gmail.com> Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: flokli <flokli@flokli.de>
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			928 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			928 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ 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";
 | 
						|
    }
 | 
						|
 | 
						|
    {
 | 
						|
      key = "tvix-update-february-24";
 | 
						|
      title = "Tvix Status - February '24";
 | 
						|
      date = 1707472132;
 | 
						|
      content = ./2024-02-tvix-update.md;
 | 
						|
      author = "flokli";
 | 
						|
    }
 | 
						|
    {
 | 
						|
      key = "tvix-update-august-24";
 | 
						|
      title = "Tvix Status - August '24";
 | 
						|
      date = 1723219370;
 | 
						|
      content = ./2024-08-tvix-update.md;
 | 
						|
      author = "flokli";
 | 
						|
    }
 | 
						|
  ];
 | 
						|
}
 |