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
This commit is contained in:
parent
aa59865333
commit
880a0409e8
@ -57,7 +57,7 @@ in {
|
|||||||
after = [ "network.target" ];
|
after = [ "network.target" ];
|
||||||
description = "Deluge BitTorrent WebUI";
|
description = "Deluge BitTorrent WebUI";
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
path = [ pkgs.pythonPackages.deluge ];
|
path = [ pkgs.deluge ];
|
||||||
serviceConfig.ExecStart = "${pkgs.deluge}/bin/deluge --ui web";
|
serviceConfig.ExecStart = "${pkgs.deluge}/bin/deluge --ui web";
|
||||||
serviceConfig.User = "deluge";
|
serviceConfig.User = "deluge";
|
||||||
serviceConfig.Group = "deluge";
|
serviceConfig.Group = "deluge";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user