School: move android studio into it's own file

This commit is contained in:
Toast 2024-09-18 12:32:33 +02:00
parent 3730c8f01c
commit f71901fc08
3 changed files with 13 additions and 2 deletions

View file

@ -0,0 +1,7 @@
{pkgs, ...}: {
programs.adb.enable = true;
users.users.toast.extraGroups = ["adbusers"];
home-manager.users.toast.home.packages = with pkgs; [
android-studio
];
}

View file

@ -0,0 +1,5 @@
{...}: {
imports = [
./android-studio.nix
];
}