Automatically rebuild the current system's NixOS config from the latest checkout of depot. Change-Id: I23aa7af50e16e985ac34df214e0905e770316e5e Reviewed-on: https://cl.tvl.fyi/c/depot/+/4390 Reviewed-by: wpcarro <wpcarro@gmail.com> Reviewed-by: zseri <zseri.devel@ytrizja.de> Reviewed-by: grfn <grfn@gws.fyi> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			288 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			288 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ depot, ... }:
 | 
						|
 | 
						|
# Default set of modules that are imported in all Depot nixos systems
 | 
						|
#
 | 
						|
# All modules here should be properly gated behind a `lib.mkEnableOption` with a
 | 
						|
# `lib.mkIf` for the config.
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ./automatic-gc.nix
 | 
						|
    ./auto-deploy.nix
 | 
						|
    ./tvl-cache.nix
 | 
						|
  ];
 | 
						|
}
 |