Add android studio

This commit is contained in:
ItsDrike 2024-09-24 11:19:54 +02:00
parent e79a5d7cde
commit 50015511a8
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
5 changed files with 37 additions and 2 deletions

View file

@ -7,5 +7,6 @@
imports = [
./workstation
./laptop
./uni
];
}

View file

@ -0,0 +1,13 @@
{
pkgs,
lib,
config,
...
}: let
inherit (lib) mkIf;
inherit (config.myOptions.device.roles) isUniMachine;
in {
config = mkIf isUniMachine {
environment.systemPackages = [pkgs.android-studio];
};
}

View file

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