nixos/deluge: Fix last wrong package attribute

I missed this in 799435b7cab97a39893a104999b3bc589e1172b1.

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

aszlig 880a0409 aa598653

Changed files
+1 -1
nixos
modules
services
torrent
+1 -1
nixos/modules/services/torrent/deluge.nix
···
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";