 36573e5e5c
			
		
	
	
		36573e5e5c
		
	
	
	
	
		
			
			"options" set to declare options and a "config" set to define options. svn path=/nixos/trunk/; revision=17148
		
			
				
	
	
		
			14 lines
		
	
	
		
			253 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			253 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {pkgs, ...}:
 | |
| 
 | |
| {
 | |
|   options = {
 | |
|     environment.checkConfigurationOptions = pkgs.lib.mkOption {
 | |
|       default = true;
 | |
|       example = false;
 | |
|       description = ''
 | |
|         Whether to check the validity of the entire configuration.
 | |
|       '';
 | |
|     };
 | |
|   };
 | |
| }
 |