refactor: replaced all with with builtins.attrValues

This commit is contained in:
Nick 2024-11-04 19:24:06 -06:00
parent f87d465a2c
commit b08a7694a5
12 changed files with 236 additions and 153 deletions

View file

@ -1,6 +1,9 @@
{pkgs, ...}: {
programs.adb.enable = true;
services.udev.packages = with pkgs; [
android-udev-rules
];
services.udev.packages = builtins.attrValues {
inherit
(pkgs)
android-udev-rules
;
};
}