From 0fbb54a04a2feba870d1c66972532e038c682175 Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Mon, 13 Jan 2025 20:05:02 +0100 Subject: [PATCH] adbfs --- system-modules/adb.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; };