From 07b0c4e41f8aabb422b02bb4e8241d78516e9442 Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Sat, 18 Jan 2025 18:12:28 -0600 Subject: [PATCH] oscar: Enable adb Among other effects, this module installs the `android-tools` package, which also provides `fastboot`. --- oscar/configuration.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/oscar/configuration.nix b/oscar/configuration.nix index faeae26..da571b0 100644 --- a/oscar/configuration.nix +++ b/oscar/configuration.nix @@ -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 = {