feat: upgrade ekman to new cluster structure

This commit is contained in:
Jonas Juselius
2025-09-23 13:40:16 +02:00
parent 46473c88dd
commit 96f8215c52
11 changed files with 44 additions and 89 deletions

View File

@@ -10,13 +10,6 @@ let
nodes = import ./nodes.nix;
compute = {
deployment.tags = [ "compute" "c1" ];
systemd.automounts = [
{
where = "/frontend";
wantedBy = [ "default.target" ];
}
];
};
mkCompute = host:
@@ -31,10 +24,10 @@ let
rdma.enable = false;
gbe100.enable = true;
automount.enable = true;
home = true;
users = true;
opt = true;
work = true;
data = false;
data = true;
backup = false;
ceph = true;
};
@@ -109,7 +102,7 @@ let
};
imports = [
hw
../cluster.nix
../default.nix
../mounts.nix
];
}