From 661031a2c33ef1572e909328cec2b4f12a4304f5 Mon Sep 17 00:00:00 2001 From: Paul-Henri Froidmont Date: Tue, 13 Apr 2021 10:48:59 +0200 Subject: [PATCH] Add adb --- configs/system.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configs/system.nix b/configs/system.nix index 9c8065e..f067476 100644 --- a/configs/system.nix +++ b/configs/system.nix @@ -35,9 +35,11 @@ hardware.pulseaudio.enable = true; hardware.pulseaudio.support32Bit = true; + programs.adb.enable = true; + users.users.froidmpa = { isNormalUser = true; - extraGroups = [ "wheel" ]; + extraGroups = [ "wheel" "adbusers" ]; shell = pkgs.zsh; };