15 lines
		
	
	
	
		
			241 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			241 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| { config, pkgs, lib, ... }:
 | |
| let
 | |
|     hostName = "Host name here!";
 | |
| in
 | |
| {
 | |
|     imports = [
 | |
|         ./hardware-configuration.nix
 | |
|         ./options
 | |
|         ./overlays
 | |
|         ./base
 | |
|         ./hosts/${hostName}.nix
 | |
|         ./personal.nix
 | |
|     ];
 | |
| }
 | |
| 
 |