mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-15 11:57:17 +00:00
14 lines
217 B
Nix
14 lines
217 B
Nix
|
{
|
||
|
pkgs,
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}: let
|
||
|
inherit (lib) mkIf;
|
||
|
inherit (config.myOptions.device.roles) isUniMachine;
|
||
|
in {
|
||
|
config = mkIf isUniMachine {
|
||
|
environment.systemPackages = [pkgs.android-studio];
|
||
|
};
|
||
|
}
|