Add android development support
This commit is contained in:
parent
80cf7061ae
commit
3f09454f83
3 changed files with 21 additions and 0 deletions
|
@ -118,6 +118,7 @@
|
|||
lazygit
|
||||
fzf
|
||||
neofetch
|
||||
jmtpfs # Android MTP
|
||||
|
||||
# Video/Audio
|
||||
alsa-utils # Audio Control
|
||||
|
|
19
modules/coding/android-studio.nix
Normal file
19
modules/coding/android-studio.nix
Normal 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
|
||||
];
|
||||
}
|
|
@ -2,4 +2,5 @@
|
|||
./nvim.nix
|
||||
./vscode.nix
|
||||
./intellij.nix
|
||||
./android-studio.nix
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue