SatoshiPay: Startup mongodb and redis automatically, after delay
Alan Pearce alan@alanpearce.eu
Sun, 29 Apr 2018 20:04:48 +0200
1 files changed, 16 insertions(+), 0 deletions(-)
jump to
M modules/satoshipay.nix → modules/satoshipay.nix
@@ -41,10 +41,26 @@ enable = true; replSetName = "rs0"; }; systemd.services.mongodb.wantedBy = lib.mkForce []; + systemd.timers.mongodb = { + description = "Delayed startup of MongoDB"; + wantedBy = [ "timers.target" ]; + timerConfig = { + OnActiveSec = "1 min"; + }; + }; + services.redis = { enable = true; }; systemd.services.redis.wantedBy = lib.mkForce []; + systemd.timers.redis = { + description = "Delayed startup of Redis"; + wantedBy = [ "timers.target" ]; + timerConfig = { + OnActiveSec = "1 min"; + }; + }; + services.printing.drivers = with pkgs; [ cups-toshiba-estudio