mio-ops/profiles/jormungandr.nix

39 lines
1 KiB
Nix
Raw Permalink Normal View History

2022-03-07 14:26:15 +00:00
{
config,
pkgs,
...
}: {
imports = [/home/craige/source/IOHK/jormungandr-nix/nixos/jormungandr.nix];
2019-09-27 01:14:35 +00:00
services = {
jormungandr = {
enable = true;
enableExplorer = false;
2022-03-07 14:26:15 +00:00
genesisBlockHash = "11e340f9c20a4bcdc19103d9794413be81c9a713374997b574e9f9d66419a2b2";
2019-09-27 01:14:35 +00:00
trustedPeersAddresses = [
"/ip4/3.123.177.192/tcp/3000"
"/ip4/52.57.157.167/tcp/3000"
"/ip4/3.123.155.47/tcp/3000"
"/ip4/3.115.57.216/tcp/3000"
"/ip4/3.112.185.217/tcp/3000"
"/ip4/18.139.40.4/tcp/3000"
"/ip4/18.140.134.230/tcp/3000"
];
publicAddress = "/ip4/173.61.28.54/tcp/3100";
topicsOfInterest = {
messages = "high";
blocks = "high";
};
withBackTraces = true;
listenAddress = "/ip4/127.0.0.1/tcp/3100";
rest.listenAddress = "127.0.0.1:3101";
logger = {
level = "info";
output = "stderr";
#backend = "monitoring.stakepool.cardano-testnet.iohkdev.io:12201";
#logs-id = "craige";
};
};
};
}