30 lines
		
	
	
		
			736 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
		
		
			
		
	
	
			30 lines
		
	
	
		
			736 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| 
								 | 
							
								{ config, lib, pkgs, ... }:
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								with lib;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								  meta.maintainers = [ maintainers.mic92 ];
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  ###### interface
							 | 
						||
| 
								 | 
							
								  options = {
							 | 
						||
| 
								 | 
							
								    programs.adb = {
							 | 
						||
| 
								 | 
							
								      enable = mkOption {
							 | 
						||
| 
								 | 
							
								        default = false;
							 | 
						||
| 
								 | 
							
								        type = types.bool;
							 | 
						||
| 
								 | 
							
								        description = ''
							 | 
						||
| 
								 | 
							
								          Whether to configure system to use Android Debug Bridge (adb).
							 | 
						||
| 
								 | 
							
								          To grant access to a user, it must be part of adbusers group:
							 | 
						||
| 
								 | 
							
								          <code>users.extraUsers.alice.extraGroups = ["adbusers"];</code>
							 | 
						||
| 
								 | 
							
								        '';
							 | 
						||
| 
								 | 
							
								      };
							 | 
						||
| 
								 | 
							
								    };
							 | 
						||
| 
								 | 
							
								  };
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  ###### implementation
							 | 
						||
| 
								 | 
							
								  config = mkIf config.programs.adb.enable {
							 | 
						||
| 
								 | 
							
								    services.udev.packages = [ pkgs.android-udev-rules ];
							 | 
						||
| 
								 | 
							
								    environment.systemPackages = [ pkgs.androidenv.platformTools ];
							 | 
						||
| 
								 | 
							
								    users.extraGroups.adbusers = {};
							 | 
						||
| 
								 | 
							
								  };
							 | 
						||
| 
								 | 
							
								}
							 |