nix-config/modules/apps/android.nix
2025-02-28 19:32:44 +01:00

12 lines
205 B
Nix

{
config,
lib,
...
}: let
inherit (lib) mkIf;
inherit (config) conf;
in
mkIf conf.apps.enable {
programs.adb.enable = true;
users.users.${conf.username}.extraGroups = ["adbusers"];
}