diff --git a/system-modules/adb.nix b/system-modules/adb.nix index d19df86..5378460 100644 --- a/system-modules/adb.nix +++ b/system-modules/adb.nix @@ -1,6 +1,9 @@ -{ host, lib, ... }: +{ pkgs, host, lib, ... }: lib.mkIf (host != "NxACE") { + environment.systemPackages = with pkgs; [ + adbfs-rootless + ]; programs.adb = { enable = true; };