diff --git a/modules/hardware/android.nix b/modules/hardware/android.nix index ca131ec..ea5c06a 100644 --- a/modules/hardware/android.nix +++ b/modules/hardware/android.nix @@ -9,6 +9,9 @@ in { programs.adb = { enable = true; }; + environment.systemPackages = with pkgs;[ + scrcpy # mirrors screen to pc, -S turns off screen while active, --render-driver opengl uses opengl for rendering + ]; users.users.${config.mainUser.name}.extraGroups = [ "adbusers" ]; }; }