Add android development support

This commit is contained in:
GHOSCHT 2023-11-18 18:02:27 +01:00
parent 80cf7061ae
commit 3f09454f83
3 changed files with 21 additions and 0 deletions

View file

@ -118,6 +118,7 @@
lazygit
fzf
neofetch
jmtpfs # Android MTP
# Video/Audio
alsa-utils # Audio Control

View file

@ -0,0 +1,19 @@
{
config,
lib,
pkgs,
unstable,
vars,
...
}: let
in {
home-manager.users.${vars.user} = {
};
programs.adb.enable = true;
users.users.${vars.user}.extraGroups = ["adbusers"];
environment.systemPackages = with unstable; [
android-studio
];
}

View file

@ -2,4 +2,5 @@
./nvim.nix
./vscode.nix
./intellij.nix
./android-studio.nix
]