secure-node: improve layout

This commit is contained in:
Erik Arvstedt 2021-01-14 13:24:29 +01:00
parent 5f7a7962f7
commit 0e00c39d47
No known key found for this signature in database
GPG Key ID: 33312B944DD97846
1 changed files with 8 additions and 9 deletions

View File

@ -25,10 +25,14 @@ in {
nix-bitcoin.security.hideProcessInformation = true;
environment.systemPackages = with pkgs; [
jq
];
# sshd
services.tor.hiddenServices.sshd = mkHiddenService { port = 22; };
nix-bitcoin.onionAddresses.access.${operatorName} = [ "sshd" ];
# bitcoind
services.bitcoind = {
enable = true;
listen = true;
@ -43,7 +47,6 @@ in {
rpc.threads = 16;
};
# liquidd
services.liquidd = {
rpcuser = "liquidrpc";
prune = 1000;
@ -51,13 +54,11 @@ in {
listen = true;
};
# Backups
nix-bitcoin.nodeinfo.enable = true;
services.backups.frequency = "daily";
environment.systemPackages = with pkgs; [
jq
];
# operator
nix-bitcoin.operator.enable = true;
users.users.${operatorName} = {
openssh.authorizedKeys.keys = config.users.users.root.openssh.authorizedKeys.keys;
@ -69,7 +70,5 @@ in {
cp "${config.users.users.root.home}/.vbox-nixops-client-key" "${config.users.users.${operatorName}.home}"
'';
};
nix-bitcoin.nodeinfo.enable = true;
};
}