nodeinfo/lnd: add onion_rest_address

This commit is contained in:
Erik Arvstedt
2023-03-11 18:59:47 +01:00
parent 54a21874ae
commit 27d95fda85
2 changed files with 13 additions and 7 deletions

View File

@@ -162,7 +162,10 @@ in {
port = lnd.restPort;
};
};
nix-bitcoin.onionAddresses.access.${lnd.user} = [ "lnd-rest" ];
nix-bitcoin.onionAddresses.access = {
${lnd.user} = [ "lnd-rest" ];
${operatorName} = [ "lnd-rest" ];
};
})
]))