- Introduces an optional module to enable adb - Integrates adb module into host configuration - Adds adbusers group membership to user settings
5 lines
129 B
Nix
5 lines
129 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
programs.adb.enable = true;
|
|
users.users.${config.hostSpec.username}.extraGroups = [ "adbusers" ];
|
|
}
|