mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
80cb28be86
* 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).
22 lines
282 B
Nix
Executable File
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
|
|
];
|
|
}
|