From 6736c6d7de5c21151783eac1304add346e25a00d Mon Sep 17 00:00:00 2001 From: Jonas Juselius Date: Fri, 9 Sep 2022 13:15:29 +0200 Subject: [PATCH] move hive to toplevel --- cluster/hive.nix => hive.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename cluster/hive.nix => hive.nix (73%) diff --git a/cluster/hive.nix b/hive.nix similarity index 73% rename from cluster/hive.nix rename to hive.nix index 01ebf14..6d8d36f 100644 --- a/cluster/hive.nix +++ b/hive.nix @@ -12,11 +12,11 @@ let allowLocalDeployment = true; targetHost = null; }; - imports = [ ../configuration.nix ]; + imports = [ ./configuration.nix ]; }; - compute = import ./compute { inherit pkgs; }; - nfs0 = import ./nfs0 { inherit pkgs; }; - nfs1 = import ./nfs1 { inherit pkgs; }; + compute = import ./cluster/compute { inherit pkgs; }; + nfs0 = import ./cluster/nfs0 { inherit pkgs; }; + nfs1 = import ./cluster/nfs1 { inherit pkgs; }; in { inherit ekman; } // compute // nfs0 // nfs1