Remove bitcoin, clightning, electrs, liquid user home directory

This commit is contained in:
nixbitcoin 2020-04-19 14:44:03 +02:00
parent aee39d6549
commit 159f551b93
No known key found for this signature in database
GPG key ID: DD11F9AD5308B3BA
5 changed files with 2 additions and 5 deletions

View file

@ -8,6 +8,7 @@ let
configFile = pkgs.writeText "config" ''
autolisten=${if cfg.autolisten then "true" else "false"}
network=bitcoin
bitcoin-datadir=${config.services.bitcoind.dataDir}
${optionalString (cfg.proxy != null) "proxy=${cfg.proxy}"}
always-use-proxy=${if cfg.always-use-proxy then "true" else "false"}
${optionalString (cfg.bind-addr != null) "bind-addr=${cfg.bind-addr}"}
@ -76,7 +77,6 @@ in {
description = "clightning User";
group = "clightning";
extraGroups = [ "bitcoinrpc" ];
home = cfg.dataDir;
};
users.groups.clightning = {};