nixos/deluge: Fix last wrong package attribute

I missed this in 799435b7ca.

This time I used "git grep -F pythonPackages.deluge" just to be sure :-)

Thanks a lot to @roconnor for spotting this.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Reported-by: @roconnor
This commit is contained in:
aszlig 2017-09-02 19:44:14 +02:00
parent aa59865333
commit 880a0409e8
No known key found for this signature in database
GPG key ID: 1DE8E48E57DB5436

View file

@ -57,7 +57,7 @@ in {
after = [ "network.target" ];
description = "Deluge BitTorrent WebUI";
wantedBy = [ "multi-user.target" ];
path = [ pkgs.pythonPackages.deluge ];
path = [ pkgs.deluge ];
serviceConfig.ExecStart = "${pkgs.deluge}/bin/deluge --ui web";
serviceConfig.User = "deluge";
serviceConfig.Group = "deluge";