Setup slurm and gitlab-runner

This commit is contained in:
2023-04-03 12:51:44 +02:00
parent 52eed708f0
commit df371c950f
9 changed files with 180 additions and 14 deletions

12
slurm.nix Normal file
View File

@@ -0,0 +1,12 @@
{ ... }:
{
services.slurm = {
client.enable = true;
controlMachine = "ssfhead";
clusterName = "owl";
nodeName = [
"xeon[01-08] Sockets=2 CoresPerSocket=14 ThreadsPerCore=2 Feature=xeon"
];
};
}