Enable strictDeps on all our toplevel packages #12

Open
abonerib wants to merge 473 commits from abonerib/bscpkgs:enableStrictDeps into master
2 changed files with 13 additions and 0 deletions
Showing only changes of commit de4ac8cbd6 - Show all commits

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"
];
};
}