torrents: downgrade transmission
This commit is contained in:
parent
a4f7e8bc92
commit
3fb0c9a179
1 changed files with 15 additions and 0 deletions
|
@ -11,6 +11,21 @@
|
||||||
config = lib.mkIf config.chvp.services.torrents.enable {
|
config = lib.mkIf config.chvp.services.torrents.enable {
|
||||||
chvp.services.nginx.hosts = [{ fqdn = "transmission.vanpetegem.me"; basicProxy = "http://localhost:9091"; }];
|
chvp.services.nginx.hosts = [{ fqdn = "transmission.vanpetegem.me"; basicProxy = "http://localhost:9091"; }];
|
||||||
|
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(self: super: {
|
||||||
|
transmission_4 = super.transmission_4.overrideAttrs (old: {
|
||||||
|
version = "4.0.5";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "transmission";
|
||||||
|
repo = "transmission";
|
||||||
|
rev = "4.0.5";
|
||||||
|
hash = "sha256-gd1LGAhMuSyC/19wxkoE2mqVozjGPfupIPGojKY0Hn4=";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
};
|
||||||
|
});
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
services.transmission = {
|
services.transmission = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.transmission_4;
|
package = pkgs.transmission_4;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue