diff --git a/modules/system/packages.nix b/modules/system/packages.nix index 0c26dee..3061f4a 100644 --- a/modules/system/packages.nix +++ b/modules/system/packages.nix @@ -16,6 +16,7 @@ gnome3.nautilus ]; environment.variables.EDITOR = "nvim"; + programs.adb.enable = true; } // (if !enableGUI then {} else { hardware.opengl.extraPackages = with pkgs; [ diff --git a/users/rin.nix b/users/rin.nix index b751283..a7217fa 100644 --- a/users/rin.nix +++ b/users/rin.nix @@ -1,7 +1,7 @@ { config, lib, modules, pkgs, ... }: { users.users.rin = { isNormalUser = true; - extraGroups = [ "audio" "video" "wheel" ]; + extraGroups = [ "adbusers" "audio" "video" "wheel" ]; shell = pkgs.zsh; uid = 1001; };