mirror of
https://github.com/ItsDrike/nixdots
synced 2025-06-29 15:50:43 +00:00
Add android studio
This commit is contained in:
parent
e79a5d7cde
commit
50015511a8
5 changed files with 37 additions and 2 deletions
13
system/roles/uni/android.nix
Normal file
13
system/roles/uni/android.nix
Normal 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];
|
||||
};
|
||||
}
|
5
system/roles/uni/default.nix
Normal file
5
system/roles/uni/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./android.nix
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue