nix-config/modules/apps/android.nix
2025-01-23 18:57:53 +01:00

6 lines
161 B
Nix

{ conf, lib }: let
inherit (lib) mkIf;
in mkIf conf.apps.enable {
programs.adb.enable = true;
users.users.${conf.username}.extraGroups = [ "adbusers" ];
}