mirror of
https://github.com/fort-nix/nix-bitcoin.git
synced 2024-11-23 06:42:51 +03:00
Don't include electrs in 'all' profile
This commit is contained in:
parent
d39a253d20
commit
0c83f87233
@ -36,12 +36,13 @@ The `nix-bitcoin.nix` module provides the two profiles "minimal" and "all":
|
|||||||
* adds clightning hidden service
|
* adds clightning hidden service
|
||||||
* [liquid-daemon](https://github.com/blockstream/liquid)
|
* [liquid-daemon](https://github.com/blockstream/liquid)
|
||||||
* [lightning charge](https://github.com/ElementsProject/lightning-charge)
|
* [lightning charge](https://github.com/ElementsProject/lightning-charge)
|
||||||
* [electrs](https://github.com/romanz/electrs) (currently disabled)
|
|
||||||
* [nanopos](https://github.com/ElementsProject/nanopos)
|
* [nanopos](https://github.com/ElementsProject/nanopos)
|
||||||
* adds an index page using nginx to display node information and link to nanopos
|
* adds an index page using nginx to display node information and link to nanopos
|
||||||
* [spark-wallet](https://github.com/shesek/spark-wallet)
|
* [spark-wallet](https://github.com/shesek/spark-wallet)
|
||||||
* Notes: run `nodeinfo` to get its onion address and `systemctl status spark-wallet` to get the access key.
|
* Notes: run `nodeinfo` to get its onion address and `systemctl status spark-wallet` to get the access key.
|
||||||
When entering the onion address on the Android app don't forgot to prepend "http://"
|
When entering the onion address on the Android app don't forgot to prepend "http://"
|
||||||
|
* other
|
||||||
|
* [electrs](https://github.com/romanz/electrs) can be enabled by setting `services.electrs.enable` in modules `nix-bitcoin.nix` to `true`
|
||||||
|
|
||||||
The data directories of the services can be found in `/var/lib` on the deployed machines.
|
The data directories of the services can be found in `/var/lib` on the deployed machines.
|
||||||
|
|
||||||
|
@ -174,7 +174,7 @@ in {
|
|||||||
}];
|
}];
|
||||||
version = 3;
|
version = 3;
|
||||||
};
|
};
|
||||||
services.electrs.enable = cfg.modules == "all";
|
services.electrs.enable = false;
|
||||||
services.electrs.high-memory = false;
|
services.electrs.high-memory = false;
|
||||||
services.tor.hiddenServices.electrs = {
|
services.tor.hiddenServices.electrs = {
|
||||||
map = [{
|
map = [{
|
||||||
|
Loading…
Reference in New Issue
Block a user