all repos — nixfiles @ 663992bd5a621a40a8f0124369d5ffa821871e19

System and user configuration, managed by nix and home-manager

SatoshiPay: Startup mongodb and redis automatically, after delay
Alan Pearce alan@alanpearce.eu
Sun, 29 Apr 2018 20:04:48 +0200
commit

663992bd5a621a40a8f0124369d5ffa821871e19

parent

ed7e95ef79e2b754047390f93e11733291775cf1

1 files changed, 16 insertions(+), 0 deletions(-)

jump to
M modules/satoshipay.nixmodules/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