Add Android adb, for flashing LineageOS

This commit is contained in:
Eli Ribble 2024-07-15 20:28:31 -07:00
parent 95a84af1f7
commit 7cc99cc2c7
1 changed files with 5 additions and 2 deletions

View File

@ -99,13 +99,16 @@
users.users.eliribble = { users.users.eliribble = {
isNormalUser = true; isNormalUser = true;
description = "Eli Ribble"; description = "Eli Ribble";
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "adbusers" "networkmanager" "wheel" ];
packages = with pkgs; [ packages = with pkgs; [
kdePackages.kate kdePackages.kate
# thunderbird # thunderbird
]; ];
}; };
# Set up Android dev tools
programs.adb.enable = true;
# Install firefox. # Install firefox.
programs.firefox.enable = true; programs.firefox.enable = true;
@ -116,7 +119,7 @@
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"spotify" "spotify"
]; ];
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [