dot.nix/hosts/common/optional/adb.nix
Chris Toph acf2240888 Adds adb support with user group configuration
- Introduces an optional module to enable adb
- Integrates adb module into host configuration
- Adds adbusers group membership to user settings
2025-04-14 13:45:59 -04:00

5 lines
129 B
Nix

{ pkgs, config, ... }:
{
programs.adb.enable = true;
users.users.${config.hostSpec.username}.extraGroups = [ "adbusers" ];
}