16 lines
		
	
	
		
			260 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			260 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { config, lib, ... }:
 | |
| 
 | |
| {
 | |
|   options = {
 | |
|     lib = lib.mkOption {
 | |
|       default = {};
 | |
| 
 | |
|       type = lib.types.attrsOf lib.types.attrs;
 | |
| 
 | |
|       description = ''
 | |
|         This option allows modules to define helper functions, constants, etc.
 | |
|       '';
 | |
|     };
 | |
|   };
 | |
| }
 | 
