27 lines
		
	
	
	
		
			373 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			373 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { lib, ... }:
 | |
| 
 | |
| {
 | |
|   imports = [
 | |
|     ./gaming
 | |
|     ./shell
 | |
|     ./bootloader
 | |
|     ./nix
 | |
|     ./programs
 | |
|     ./displayManager
 | |
|     ./networking
 | |
|     ./locale
 | |
|     ./virtualization
 | |
|     ./security
 | |
|     ./services
 | |
|     ./audio
 | |
|     ./host
 | |
|     ./video
 | |
|   ];
 | |
| 
 | |
| 
 | |
|   options.systemModules = {
 | |
|     virtualisation = {
 | |
|       enable = lib.mkEnableOption "Enable virtualisation module";
 | |
|     };
 | |
|   };
 | |
| }
 |