oscar: Enable adb

Among other effects, this module installs the `android-tools` package,
which also provides `fastboot`.
This commit is contained in:
Chandler Swift 2025-01-18 18:12:28 -06:00
parent 86c09a00cc
commit 07b0c4e41f
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F

View file

@ -118,7 +118,7 @@
# Define a user account. Don't forget to set a password with passwd.
users.users.chandler.isNormalUser = true;
users.users.chandler.description = "Chandler Swift";
users.users.chandler.extraGroups = [ "networkmanager" "wheel" "dialout" "cdrom" "plugdev" ];
users.users.chandler.extraGroups = [ "networkmanager" "wheel" "dialout" "cdrom" "plugdev" "adbusers" ];
home-manager.backupFileExtension = "backup";
home-manager.users.chandler = { pkgs, ... }: {
@ -185,6 +185,8 @@
programs.thunderbird.enable = true;
programs.adb.enable = true;
programs.bash.enable = true;
programs.direnv = {