15 lines
		
	
	
		
			214 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			214 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  options.set = {
 | 
						|
    enable = lib.mkOption {
 | 
						|
      default = false;
 | 
						|
      example = true;
 | 
						|
      type = lib.types.bool;
 | 
						|
      description = ''
 | 
						|
        Some descriptive text
 | 
						|
      '';
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |