17 lines
		
	
	
	
		
			280 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			280 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  config,
 | 
						|
  factsGenerator,
 | 
						|
  clanLib,
 | 
						|
  ...
 | 
						|
}:
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    #./disko-config-simple.nix
 | 
						|
    ./disko-config-encrypted.nix
 | 
						|
    ./hardware-configuration.nix
 | 
						|
    ./hetzner.nix # to more me to components
 | 
						|
  ];
 | 
						|
 | 
						|
  boot.tmp.useTmpfs = true; # make /tmp a tmpfs (performance!)
 | 
						|
 | 
						|
}
 |