| 
									
										
										
										
											2014-11-09 19:32:11 -07:00
										 |  |  | { config, lib, pkgs, ... }: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | with lib; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | let | 
					
						
							|  |  |  |   cfg = config.programs.light; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | in | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   options = { | 
					
						
							|  |  |  |     programs.light = { | 
					
						
							|  |  |  |       enable = mkOption { | 
					
						
							|  |  |  |         default = false; | 
					
						
							|  |  |  |         type = types.bool; | 
					
						
							|  |  |  |         description = ''
 | 
					
						
							| 
									
										
										
										
											2018-09-30 21:16:56 -05:00
										 |  |  |           Whether to install Light backlight control command | 
					
						
							|  |  |  |           and udev rules granting access to members of the "video" group. | 
					
						
							| 
									
										
										
										
											2014-11-09 19:32:11 -07:00
										 |  |  |         '';
 | 
					
						
							|  |  |  |       }; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   config = mkIf cfg.enable { | 
					
						
							|  |  |  |     environment.systemPackages = [ pkgs.light ]; | 
					
						
							| 
									
										
										
										
											2018-09-30 06:11:56 -05:00
										 |  |  |     services.udev.packages = [ pkgs.light ]; | 
					
						
							| 
									
										
										
										
											2014-11-09 19:32:11 -07:00
										 |  |  |   }; | 
					
						
							|  |  |  | } |