28 lines
543 B
Nix
28 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
|