12 lines
		
	
	
		
			206 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			206 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ inputs, self, ... }:
 | 
						|
{
 | 
						|
  config._module.args.globalArgs = {
 | 
						|
    inherit inputs self;
 | 
						|
    flake = self;
 | 
						|
    conf = {
 | 
						|
      colors = import ./colors.nix;
 | 
						|
      network = import ./network.nix;
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |