2023-12-04 17:42:06 +01:00
|
|
|
let
|
|
|
|
sources = import ./npins;
|
|
|
|
|
|
|
|
agenix = sources.agenix + "/modules/age.nix";
|
|
|
|
|
|
|
|
metadata = {
|
|
|
|
nodes = {
|
|
|
|
milieu = {
|
|
|
|
deployment = {
|
|
|
|
targetHost = null; #"milieu.cave.hackens.org";
|
|
|
|
# targetPort = 4243;
|
|
|
|
allowLocalDeployment = true;
|
|
|
|
};
|
|
|
|
imports = [agenix];
|
|
|
|
};
|
|
|
|
org = {
|
|
|
|
deployment = {
|
2024-01-08 20:08:55 +01:00
|
|
|
targetHost = "server1.hackens.org"; # todo make something with ens firewall
|
2023-12-04 17:42:06 +01:00
|
|
|
targetPort = 2222;
|
|
|
|
};
|
|
|
|
imports = [agenix];
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
metadata
|