jungle/xeon07/slurm.nix

18 lines
355 B
Nix
Raw Normal View History

2023-04-03 12:51:44 +02:00
{ ... }:
{
services.slurm = {
client.enable = true;
2023-04-26 13:29:28 +02:00
server.enable = true;
controlMachine = "xeon07";
2023-04-03 12:51:44 +02:00
clusterName = "owl";
nodeName = [
2023-04-26 13:29:28 +02:00
"xeon[01-02,07] Sockets=2 CoresPerSocket=14 ThreadsPerCore=2 Feature=xeon"
];
partitionName = [
"xeon Nodes=xeon[01-02,07] Default=YES MaxTime=INFINITE State=UP"
2023-04-03 12:51:44 +02:00
];
};
}