about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-09-13T12·37+0300
committertazjin <mail@tazj.in>2021-09-15T12·15+0000
commit7b13aa62a81397340a67ba28084a47fb16091e4e (patch)
tree1ef41ea8c99d3fc3833123c597503dbdd8b59729
parenteb65d13f5a3aace92578d49dc89e11a6b202cb6b (diff)
feat(tazjin/tverskoy): Enable adb r/2860
Change-Id: I088d2b0526f10d848da56d8192e93b79d6297746
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3539
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
-rw-r--r--users/tazjin/nixos/tverskoy/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/users/tazjin/nixos/tverskoy/default.nix b/users/tazjin/nixos/tverskoy/default.nix
index e86b20fc3f..ec32a417a8 100644
--- a/users/tazjin/nixos/tverskoy/default.nix
+++ b/users/tazjin/nixos/tverskoy/default.nix
@@ -204,7 +204,7 @@ in lib.fix(self: {
   users.users.tazjin = {
     isNormalUser = true;
     createHome = true;
-    extraGroups = [ "wheel" "networkmanager" "video" ];
+    extraGroups = [ "wheel" "networkmanager" "video" "adbusers" ];
     uid = 1000;
     shell = pkgs.fish;
     initialHashedPassword = "$6$d3FywUNCuZnJ4l.$ZW2ul59MLYon1v1xhC3lTJZfZ91lWW6Tpi13MpME0cJcYZNrsx7ABdgQRn.K05awruG2Y9ARAzURnmiJ31WTS1";
@@ -216,6 +216,7 @@ in lib.fix(self: {
     ssh.startAgent = true;
     mosh.enable = true;
     steam.enable = true;
+    adb.enable = true;
 
     # Required by impermanence
     fuse.userAllowOther = true;