mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
android adb and fastboot
This commit is contained in:
parent
c1eb1a091d
commit
5d2ce80867
@ -40,6 +40,7 @@ in
|
||||
../../modules/firefox.nix
|
||||
../../modules/thunderbird.nix
|
||||
#../../modules/digikam.nix
|
||||
#../../modules/android.nix
|
||||
];
|
||||
|
||||
networking.hostName = "yodaTab";
|
||||
|
@ -40,6 +40,7 @@ in
|
||||
../../modules/firefox.nix
|
||||
../../modules/thunderbird.nix
|
||||
../../modules/digikam.nix
|
||||
../../modules/android.nix
|
||||
];
|
||||
|
||||
networking.hostName = "yodaTux";
|
||||
|
31
modules/android.nix
Normal file
31
modules/android.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# adb and fastboot
|
||||
|
||||
# https://nixos.wiki/wiki/Android#adb_setup
|
||||
programs.adb.enable = true;
|
||||
users.users.yoda.extraGroups = [ "adbusers" "plugdev" ];
|
||||
|
||||
# plugdev group: https://developer.android.com/studio/run/device
|
||||
# How to add user to new group: https://superuser.com/a/1352988
|
||||
users.groups.plugdev = {};
|
||||
|
||||
# `adb devices` returned the error: no permissions (missing udev rules? user is in the plugdev group)
|
||||
# So I troed two things. The first one had no effect. But the second one fixed it.
|
||||
|
||||
#services.udev.packages = [
|
||||
# pkgs.android-udev-rules
|
||||
#];
|
||||
|
||||
# `lsusb`
|
||||
#=> Bus 001 Device 008: ID 2a70:d001 OnePlus Technology (Shenzhen) Co., Ltd. ONEPLUS A6003
|
||||
# https://stackoverflow.com/a/53887437
|
||||
#
|
||||
# After adding this, `adb devices` returnes:
|
||||
#=> List of devices attached
|
||||
#=> 21801e97 sideload
|
||||
services.udev.extraRules = ''
|
||||
SUBSYSTEM=="usb", ATTR{idVendor}=="2a70", ATTR{idProduct}=="d001", MODE="0666", GROUP="plugdev"
|
||||
'';
|
||||
}
|
Loading…
Reference in New Issue
Block a user