modules.packages.android-studio: remove

This commit is contained in:
2025-06-13 19:33:05 +08:00
parent 1932d80220
commit 9ef5d5f35d
2 changed files with 1 additions and 10 deletions

View File

@@ -106,7 +106,7 @@ inputs:
nfs."/" = [ "192.168.84.0/24" ];
};
bugs = [ "xmunet" "backlight" "amdpstate" "iwlwifi" ];
packages = { android-studio = {}; mathematica = {}; vasp = {}; lammps = {}; };
packages = { mathematica = {}; vasp = {}; lammps = {}; };
};
boot.loader.grub =
{

View File

@@ -1,9 +0,0 @@
inputs:
{
options.nixos.packages.android-studio = let inherit (inputs.lib) mkOption types; in mkOption
{ type = types.nullOr (types.submodule {}); default = null; };
config = let inherit (inputs.config.nixos.packages) android-studio; in inputs.lib.mkIf (android-studio != null)
{
nixos.packages.packages._packages = with inputs.pkgs; [ androidStudioPackages.stable.full ];
};
}