[nix] Add `wantedBy` to systemd service (#126)

This field needed to properly enable service by configuration.
master
Yury Shvedov 4 months ago committed by GitHub
parent 09b0f1ae0a
commit e17d9cf02b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -19,6 +19,7 @@ let
{
inherit (cfg) enable;
after = [ "network-online.target" ];
wantedBy = [ "multi-user.target" ];
description = "gitwatch for ${name}";
path = with pkgs; [ gitwatch git openssh ];
script = ''

Loading…
Cancel
Save