dotfiles/user-modules/development/default.nix

20 lines
466 B
Nix
Raw Normal View History

2025-01-23 23:28:22 +00:00
{ ... }:
{
imports = [
2025-01-30 18:05:44 +00:00
./ide/mathematica.nix
2025-01-26 11:57:38 +00:00
./ide/matlab.nix
2025-02-09 00:11:07 +00: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 12:16:06 +00: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-23 23:28:22 +00:00
];
}