From 72e50645a36264ab2ead636c6f547109879f78a2 Mon Sep 17 00:00:00 2001 From: Robin Stumm Date: Mon, 15 May 2017 15:09:50 +0200 Subject: [PATCH] znapzend service: fix autostart --- nixos/modules/services/backup/znapzend.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/backup/znapzend.nix b/nixos/modules/services/backup/znapzend.nix index 35c0308c9dc..a980ac1b3b0 100644 --- a/nixos/modules/services/backup/znapzend.nix +++ b/nixos/modules/services/backup/znapzend.nix @@ -18,6 +18,7 @@ in systemd.services = { "znapzend" = { description = "ZnapZend - ZFS Backup System"; + wantedBy = [ "zfs.target" ]; after = [ "zfs.target" ]; path = with pkgs; [ zfs mbuffer openssh ]; @@ -28,6 +29,5 @@ in }; }; }; - }; }