From 880a0409e8cc03b4aa5e69d041bf5e293c71da3f Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 2 Sep 2017 19:44:14 +0200 Subject: [PATCH] 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 Reported-by: @roconnor --- nixos/modules/services/torrent/deluge.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/torrent/deluge.nix b/nixos/modules/services/torrent/deluge.nix index 1ea6bf88d7a..ec1e97f4125 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";