diff --git a/bsc/garlic/sbatch.nix b/bsc/garlic/sbatch.nix index dfdc313..41bffb1 100644 --- a/bsc/garlic/sbatch.nix +++ b/bsc/garlic/sbatch.nix @@ -14,6 +14,7 @@ , nodes ? null , exclusive ? true # By default we run in exclusive mode , qos ? null +, reservation ? null , time ? null , output ? "job_%j.out" , error ? "job_%j.err" @@ -60,6 +61,7 @@ stdenv.mkDerivation rec { + sbatchEnable "exclusive" exclusive + sbatchOpt "time" time + sbatchOpt "qos" qos + + sbatchOpt "reservation" reservation + optionalString (extra!=null) extra + ''