remove adb
All checks were successful
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 11s
Check Nix flake / Perform Nix flake checks (pull_request) Successful in 3m40s

This commit is contained in:
2026-01-16 18:16:56 -05:00
parent 4372e4c3fc
commit beead96472
2 changed files with 6 additions and 2 deletions

View File

@@ -17,4 +17,7 @@ import ../default.nix {
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILWG3cIBju6vzX6s8JlmGNJOiWY7pQ19bHvcqDADtWzv snowi@DESKTOP-EVIR8IH"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEMfC0IXl9sGx+9FjuYZT2OUfffGjciJIHWqZdEU1d3n alice@parthenon-7588"
];
groups = [
"adbusers"
];
}

View File

@@ -4,6 +4,7 @@
pkgs,
name,
publicKeys ? [ ],
groups ? [ ],
defaultShell ? "zsh",
}:
@@ -18,7 +19,6 @@
"wheel"
"media"
(lib.mkIf config.networking.networkmanager.enable "networkmanager")
(lib.mkIf config.programs.adb.enable "adbusers")
(lib.mkIf config.programs.wireshark.enable "wireshark")
(lib.mkIf config.virtualisation.docker.enable "docker")
(lib.mkIf (with config.services.locate; (enable && package == pkgs.plocate)) "plocate")
@@ -28,5 +28,6 @@
"plugdev"
"uaccess"
"ydotool"
];
]
++ groups;
}