znapzend service: fix autostart

This commit is contained in:
Robin Stumm 2017-05-15 15:09:50 +02:00
parent a35ec5dda6
commit 72e50645a3

View File

@ -18,6 +18,7 @@ in
systemd.services = { systemd.services = {
"znapzend" = { "znapzend" = {
description = "ZnapZend - ZFS Backup System"; description = "ZnapZend - ZFS Backup System";
wantedBy = [ "zfs.target" ];
after = [ "zfs.target" ]; after = [ "zfs.target" ];
path = with pkgs; [ zfs mbuffer openssh ]; path = with pkgs; [ zfs mbuffer openssh ];
@ -28,6 +29,5 @@ in
}; };
}; };
}; };
}; };
} }