Change-Id: Id15da6cc35eefe091224a53be12ce0392e8b6172 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10741 Reviewed-by: aspen <root@gws.fyi> Reviewed-by: raitobezarius <tvl@lahfa.xyz> Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			760 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			760 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-feb-22";
 | 
						|
      title = "Tvix Status - February '24";
 | 
						|
      date = 1707472132;
 | 
						|
      content = ./2024-02-tvix-update.md;
 | 
						|
      author = "flokli";
 | 
						|
      draft = true;
 | 
						|
    }
 | 
						|
  ];
 | 
						|
}
 |