20 lines
466 B
Nix
Raw Normal View History

2025-01-24 00:28:22 +01:00
{ ... }:
{
imports = [
2025-01-30 19:05:44 +01:00
./ide/mathematica.nix
2025-01-26 12:57:38 +01:00
./ide/matlab.nix
2025-02-09 01:11:07 +01:00
# TODO: Move languages to make clear it is just IDE configuration
# Languages should be installed with devShells, however the IDE must be configured globally
2025-01-26 13:16:06 +01:00
./language/cpp.nix
./language/haskell.nix
./language/js.nix
./language/jupyter.nix
./language/nix.nix
./language/python.nix
./language/rust.nix
./language/tex.nix
./utility/docker.nix
2025-01-24 00:28:22 +01:00
];
}