diff --git a/nixos/base.nix b/nixos/base.nix index 417875c..5523342 100644 --- a/nixos/base.nix +++ b/nixos/base.nix @@ -72,6 +72,9 @@ # Allow unfree packages nixpkgs.config.allowUnfree = true; + # Android debug tools + programs.adb.enable = true; + # Bash config programs.bash = { blesh.enable = true; @@ -82,10 +85,11 @@ isNormalUser = true; description = "Chase"; extraGroups = [ - # "adbusers" + "adbusers" "audio" "cdrom" "dialout" + "kvm" "networkmanager" "tss" "video" @@ -188,7 +192,6 @@ services.pcscd.enable = true; services.udev.packages = with pkgs; [ - android-udev-rules yubikey-personalization ];