programs: zecwallet-lite: move to own file

This commit is contained in:
Colin 2024-01-01 15:17:51 +00:00
parent 61b2b8f2cd
commit 6471524f4a
3 changed files with 17 additions and 3 deletions

View File

@ -282,9 +282,6 @@ in
whalebird.persist.byStore.private = [ ".config/Whalebird" ];
yarn.persist.byStore.plaintext = [ ".cache/yarn" ];
# zcash coins. safe to delete, just slow to regenerate (10-60 minutes)
zecwallet-lite.persist.byStore.private = [ ".zcash" ];
};
programs.feedbackd = lib.mkIf config.sane.programs.feedbackd.enabled {

View File

@ -87,6 +87,7 @@
./wob.nix
./xarchiver.nix
./zeal.nix
./zecwallet-lite.nix
./zsh
];

View File

@ -0,0 +1,16 @@
# zcash wallet
#
# N.B.: zecwallet is UNMAINTAINED. as of 2024/01/01 it requires manual intervention to sync:
# 1. launch it, and wait 5min for it to timeout.
# 2. set the node address to https://lwd3.zcash-infra.com:9067
# 3. close the application and re-open
# more info:
# - <https://forum.zcashcommunity.com/t/zecwallet-lightwalletd-server-continuation/45659/>
# - <https://status.zcash-infra.com/>
{ ... }:
{
sane.programs.zecwallet-lite = {
# zcash coins. safe to delete, just slow to regenerate (10-60 minutes)
persist.byStore.private = [ ".zcash" ];
};
}