move hive to toplevel

This commit is contained in:
Jonas Juselius
2022-09-09 13:15:29 +02:00
parent 980364adee
commit 6736c6d7de

View File

@@ -12,11 +12,11 @@ let
allowLocalDeployment = true; allowLocalDeployment = true;
targetHost = null; targetHost = null;
}; };
imports = [ ../configuration.nix ]; imports = [ ./configuration.nix ];
}; };
compute = import ./compute { inherit pkgs; }; compute = import ./cluster/compute { inherit pkgs; };
nfs0 = import ./nfs0 { inherit pkgs; }; nfs0 = import ./cluster/nfs0 { inherit pkgs; };
nfs1 = import ./nfs1 { inherit pkgs; }; nfs1 = import ./cluster/nfs1 { inherit pkgs; };
in in
{ inherit ekman; } // compute // nfs0 // nfs1 { inherit ekman; } // compute // nfs0 // nfs1