nixos-config/modules/dev/default.nix
Gabriel Arazas 80cb28be86 Update the modules
* Python module now has an additional option for the package to be
installed for easier installation of other versions.
* The Python module also has a restriction of installing version 3 and
above.
* The JavaScript module has been moved into a more general module for
web-based tools (including PHP).
2020-10-27 16:33:47 +08:00

22 lines
282 B
Nix
Executable File

{ config, lib, ... }:
{
imports = [
./android.nix
./base.nix
./cc.nix
./data.nix
./documentation.nix
./gamedev.nix
./go.nix
./java.nix
./lisp.nix
./math.nix
./perl.nix
./python.nix
./rust.nix
./vcs.nix
./web.nix
];
}