stdexp: rename "name" to "clusterName"

This commit is contained in:
Rodrigo Arias 2021-01-14 12:25:32 +01:00
parent 422d359b48
commit 5c0f179830
2 changed files with 2 additions and 3 deletions

View File

@ -6,7 +6,7 @@
# MareNostrum 4 configuration # MareNostrum 4 configuration
mn4 = { mn4 = {
config = { config = {
name = "mn4"; clusterName = "mn4";
sshHost = "mn1"; sshHost = "mn1";
nixPrefix = "/gpfs/projects/bsc15/nix"; nixPrefix = "/gpfs/projects/bsc15/nix";
march = "skylake-avx512"; march = "skylake-avx512";

View File

@ -94,8 +94,7 @@ rec {
else {} else {}
) // ) //
{ {
clusterName = machineConf.name; inherit (conf) nixPrefix clusterName;
inherit (conf) nixPrefix;
inherit nextStage; inherit nextStage;
} }
); );