jungle/slurm.nix

13 lines
225 B
Nix
Raw Normal View History

2023-04-03 12:51:44 +02:00
{ ... }:
{
services.slurm = {
client.enable = true;
controlMachine = "ssfhead";
clusterName = "owl";
nodeName = [
"xeon[01-08] Sockets=2 CoresPerSocket=14 ThreadsPerCore=2 Feature=xeon"
];
};
}