23 lines
		
	
	
	
		
			312 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			312 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ./shell
 | 
						|
    ./boot
 | 
						|
    ./nix
 | 
						|
    ./displayManager
 | 
						|
    ./networking
 | 
						|
    ./locale.nix
 | 
						|
    ./virtualization
 | 
						|
    ./security
 | 
						|
    ./services
 | 
						|
    ./host
 | 
						|
  ];
 | 
						|
 | 
						|
 | 
						|
  options.ooknet = {
 | 
						|
    virtualisation = {
 | 
						|
      enable = lib.mkEnableOption "Enable virtualisation module";
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |