NixOS/system/modules/android.nix

18 lines
337 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}:
2024-06-12 09:54:11 +07:00
let
cfg = config.profile.android;
username = config.profile.user.name;
2024-06-12 09:54:11 +07:00
in
{
config = lib.mkIf cfg.enable {
users.users.${username}.extraGroups = [ "adbusers" ];
2024-06-12 09:54:11 +07:00
programs.adb.enable = true;
environment.systemPackages = with pkgs; [ androidenv.androidPkgs_9_0.platform-tools ];
2024-06-12 09:54:11 +07:00
};
}