torrents: downgrade transmission

This commit is contained in:
Charlotte Van Petegem 2024-08-10 12:27:53 +02:00
parent a4f7e8bc92
commit 3fb0c9a179
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -11,6 +11,21 @@
config = lib.mkIf config.chvp.services.torrents.enable {
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 = {
enable = true;
package = pkgs.transmission_4;