summary refs log tree commit diff
path: root/nixos/modules/services/torrent
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2017-09-02 19:44:14 +0200
committeraszlig <aszlig@redmoonstudios.org>2017-09-02 19:44:14 +0200
commit880a0409e8cc03b4aa5e69d041bf5e293c71da3f (patch)
treef5c9737b756d6ddaf4fddb2b4f1c6dcc935abaa8 /nixos/modules/services/torrent
parentaa598653339337b08f8418841d4059930661a30d (diff)
downloadnixlib-880a0409e8cc03b4aa5e69d041bf5e293c71da3f.tar
nixlib-880a0409e8cc03b4aa5e69d041bf5e293c71da3f.tar.gz
nixlib-880a0409e8cc03b4aa5e69d041bf5e293c71da3f.tar.bz2
nixlib-880a0409e8cc03b4aa5e69d041bf5e293c71da3f.tar.lz
nixlib-880a0409e8cc03b4aa5e69d041bf5e293c71da3f.tar.xz
nixlib-880a0409e8cc03b4aa5e69d041bf5e293c71da3f.tar.zst
nixlib-880a0409e8cc03b4aa5e69d041bf5e293c71da3f.zip
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
Diffstat (limited to 'nixos/modules/services/torrent')
-rw-r--r--nixos/modules/services/torrent/deluge.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/torrent/deluge.nix b/nixos/modules/services/torrent/deluge.nix
index 1ea6bf88d7ae..ec1e97f4125e 100644
--- a/nixos/modules/services/torrent/deluge.nix
+++ b/nixos/modules/services/torrent/deluge.nix
@@ -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";