NixOS configuration for HPC cluster https://docs.hpc.informatik.hs-fulda.de/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
277 B

10 months ago
11 months ago
  1. { pkgs, lib, config, nodes, ... }:
  2. with lib;
  3. {
  4. environment.etc."mpi/hosts" = {
  5. text = concatMapStringsSep "\n"
  6. (node: "${node.config.networking.hostName} max_slots=64")
  7. (filter
  8. (node: node.config.hpc.node.enable)
  9. (attrValues nodes));
  10. };
  11. }