nixos/modules/packages/hpc.nix

10 lines
221 B
Nix
Raw Normal View History

2023-06-24 23:00:02 +08:00
inputs:
2023-06-09 20:54:03 +08:00
{
config.environment.systemPackages = with inputs.pkgs;
[
2023-06-25 11:38:01 +08:00
ovito paraview localPackages.vesta # vsim
2023-06-17 11:35:26 +08:00
(python3.withPackages (ps: with ps; [ phonopy inquirerpy requests tqdm ]))
2023-06-09 20:54:03 +08:00
mathematica octave root
];
}