School: move android studio into it's own file
This commit is contained in:
parent
3730c8f01c
commit
f71901fc08
3 changed files with 13 additions and 2 deletions
|
|
@ -1,11 +1,10 @@
|
|||
{pkgs, ...}: {
|
||||
imports = [
|
||||
# ./programs
|
||||
./programs
|
||||
./services
|
||||
];
|
||||
home-manager.users.toast.home.packages = with pkgs; [
|
||||
jetbrains.idea-ultimate
|
||||
android-studio
|
||||
jetbrains.webstorm
|
||||
nodejs
|
||||
];
|
||||
|
|
|
|||
7
roles/school/programs/android-studio.nix
Normal file
7
roles/school/programs/android-studio.nix
Normal 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
|
||||
];
|
||||
}
|
||||
5
roles/school/programs/default.nix
Normal file
5
roles/school/programs/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{...}: {
|
||||
imports = [
|
||||
./android-studio.nix
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue