nix-config/modules/apps/android.nix
2025-01-23 18:59:08 +01:00

7 lines
193 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" ];
}