{ lib, config, pkgs, ... }:

{
  config = {
    programs.adb.enable = true;
    environment.systemPackages = with pkgs; [
      scrcpy
    ];
  };
}