Merge fort-nix/nix-bitcoin#458: liquidd: add service timeouts like in bitcoind
2493c8c201
liquidd: add service timeouts like in bitcoind (Erik Arvstedt)59bf0274c0
pkgs: add groups, sort alphabetically (Erik Arvstedt) Pull request description: ACKs for top commit: nixbitcoin: ACK2493c8c201
Tree-SHA512: 229f57a4093b996d500f95f81992b7f0314596828639179ed57936a4bc5d0f556498bf29e1acd9aabd3cbee97f034ccabd9dad2fde01deddc5e226c6c46c7bb2
This commit is contained in:
commit
19abacc41c
@ -270,6 +270,8 @@ in {
|
|||||||
NotifyAccess = "all";
|
NotifyAccess = "all";
|
||||||
User = cfg.user;
|
User = cfg.user;
|
||||||
Group = cfg.group;
|
Group = cfg.group;
|
||||||
|
TimeoutStartSec = "5min";
|
||||||
|
TimeoutStopSec = "10min";
|
||||||
ExecStart = "${nbPkgs.elementsd}/bin/elementsd -datadir='${cfg.dataDir}'";
|
ExecStart = "${nbPkgs.elementsd}/bin/elementsd -datadir='${cfg.dataDir}'";
|
||||||
Restart = "on-failure";
|
Restart = "on-failure";
|
||||||
ReadWritePaths = cfg.dataDir;
|
ReadWritePaths = cfg.dataDir;
|
||||||
|
@ -6,23 +6,27 @@ in
|
|||||||
, pkgsUnstable ? import nixpkgsPinned.nixpkgs-unstable { config = {}; overlays = []; }
|
, pkgsUnstable ? import nixpkgsPinned.nixpkgs-unstable { config = {}; overlays = []; }
|
||||||
}:
|
}:
|
||||||
let self = {
|
let self = {
|
||||||
rtl = pkgs.callPackage ./rtl { };
|
|
||||||
cl-rest = pkgs.callPackage ./cl-rest { };
|
cl-rest = pkgs.callPackage ./cl-rest { };
|
||||||
spark-wallet = pkgs.callPackage ./spark-wallet { };
|
|
||||||
liquid-swap = pkgs.python3Packages.callPackage ./liquid-swap { };
|
|
||||||
joinmarket = pkgs.callPackage ./joinmarket { inherit (self) nbPython3Packages; };
|
|
||||||
generate-secrets = import ./generate-secrets-deprecated.nix;
|
|
||||||
nixops19_09 = pkgs.callPackage ./nixops { };
|
|
||||||
krops = import ./krops { };
|
|
||||||
netns-exec = pkgs.callPackage ./netns-exec { };
|
|
||||||
clightning-plugins = pkgs.recurseIntoAttrs (import ./clightning-plugins pkgs self.nbPython3Packages);
|
|
||||||
clboss = pkgs.callPackage ./clboss { };
|
clboss = pkgs.callPackage ./clboss { };
|
||||||
|
clightning-plugins = pkgs.recurseIntoAttrs (import ./clightning-plugins pkgs self.nbPython3Packages);
|
||||||
|
joinmarket = pkgs.callPackage ./joinmarket { inherit (self) nbPython3Packages; };
|
||||||
|
liquid-swap = pkgs.python3Packages.callPackage ./liquid-swap { };
|
||||||
|
rtl = pkgs.callPackage ./rtl { };
|
||||||
secp256k1 = pkgs.callPackage ./secp256k1 { };
|
secp256k1 = pkgs.callPackage ./secp256k1 { };
|
||||||
|
spark-wallet = pkgs.callPackage ./spark-wallet { };
|
||||||
|
|
||||||
nbPython3Packages = (pkgs.python3.override {
|
nbPython3Packages = (pkgs.python3.override {
|
||||||
packageOverrides = import ./python-packages self;
|
packageOverrides = import ./python-packages self;
|
||||||
}).pkgs;
|
}).pkgs;
|
||||||
|
|
||||||
|
# Internal pkgs
|
||||||
|
netns-exec = pkgs.callPackage ./netns-exec { };
|
||||||
|
krops = import ./krops { };
|
||||||
|
|
||||||
|
# Deprecated pkgs
|
||||||
|
generate-secrets = import ./generate-secrets-deprecated.nix;
|
||||||
|
nixops19_09 = pkgs.callPackage ./nixops { };
|
||||||
|
|
||||||
pinned = import ./pinned.nix pkgs pkgsUnstable;
|
pinned = import ./pinned.nix pkgs pkgsUnstable;
|
||||||
|
|
||||||
modulesPkgs = self // self.pinned;
|
modulesPkgs = self // self.pinned;
|
||||||
|
Loading…
Reference in New Issue
Block a user