modules: services: transmission: bump to 4

Not sure why exactly this isn't the default, I'll have to watch out for
when upstream catches up.
This commit is contained in:
Bruno BELANYI 2023-09-28 18:02:22 +02:00
parent 2d36ffd96d
commit dae1a434d5
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@
# Inspired by [1]
#
# [1]: https://github.com/delroth/infra.delroth.net/blob/master/roles/seedbox.nix
{ config, lib, ... }:
{ config, lib, pkgs, ... }:
let
cfg = config.my.services.transmission;
in
@ -45,6 +45,7 @@ in
config = lib.mkIf cfg.enable {
services.transmission = {
enable = true;
package = pkgs.transmission_4;
group = "media";
downloadDirPermissions = "775";