hackens-org-configurations/meta.nix
2023-12-19 13:27:58 +01:00

27 lines
543 B
Nix

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 = {
targetHost = "localhost"; # todo make something with ens firewall
targetPort = 2222;
};
imports = [agenix];
};
};
};
in
metadata