13 lines
		
	
	
	
		
			219 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			219 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   lib,
 | |
|   config,
 | |
|   ...
 | |
| }: let
 | |
|   inherit (config.ooknet.hardware) features;
 | |
|   inherit (lib) mkIf;
 | |
|   inherit (builtins) elem;
 | |
| in {
 | |
|   config = mkIf (elem "backlight" features) {
 | |
|     hardware.brillo.enable = true;
 | |
|   };
 | |
| }
 |