Enable slurm in xeon01

This commit is contained in:
Rodrigo Arias 2023-04-26 13:35:06 +02:00 committed by Rodrigo Arias Mallo
parent de2af79810
commit 95bbeeb646
2 changed files with 13 additions and 0 deletions

View File

@ -3,6 +3,7 @@
{
imports = [
../common/main.nix
./slurm.nix
];
# Select the this using the ID to avoid mismatches

12
xeon01/slurm.nix Normal file
View File

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