From 45109c95b5412943cf740a6f301b0dbc0f43aace Mon Sep 17 00:00:00 2001 From: chase Date: Mon, 9 Jun 2025 16:21:17 -0400 Subject: [PATCH] Enable adb globally, add `kvm` group --- nixos/base.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 ];