jungle/m/module/slurm-firewall.nix

9 lines
164 B
Nix
Raw Permalink Normal View History

{ ... }:
{
networking.firewall = {
# Required for PMIx in SLURM, we should find a better way
allowedTCPPortRanges = [ { from=1024; to=65535; } ];
};
}