nixos/modules/packages/hpc.nix

14 lines
256 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-28 16:37:13 +08:00
(python3.withPackages (ps: with ps;
[
phonopy inquirerpy requests tqdm
localPackages.upho
]))
2023-06-28 16:42:49 +08:00
mathematica octave root cling
2023-06-09 20:54:03 +08:00
];
}