jungle/m/common/slurm.nix
Rodrigo Arias Mallo d679fd6314 Simplify flake and expose host pkgs
The configuration of the machines is now moved to m/
2025-10-01 16:40:15 +02:00

18 lines
356 B
Nix

{ ... }:
{
services.slurm = {
client.enable = true;
controlMachine = "hut";
clusterName = "owl";
nodeName = [
"owl[1,2] Sockets=2 CoresPerSocket=14 ThreadsPerCore=2 Feature=owl"
"hut Sockets=2 CoresPerSocket=14 ThreadsPerCore=2"
];
extraConfig = ''
MpiDefault=pmix
ReturnToService=2
'';
};
}