diff --git a/nixos/modules/android.nix b/nixos/modules/android.nix index 4c6ee67..8dc8f99 100755 --- a/nixos/modules/android.nix +++ b/nixos/modules/android.nix @@ -1,6 +1,6 @@ {pkgs, ...}: { programs.adb.enable = true; - services.udev.packages = [ - pkgs.android-udev-rules + services.udev.packages = with pkgs; [ + android-udev-rules ]; }