all repos — nixfiles @ 2f4fd4b7323fa10f54e3c4d4b2392fa75cd34211

System and user configuration, managed by nix and home-manager

prefect: install transmission service
Alan Pearce alan@alanpearce.eu
Mon, 20 Jun 2022 16:25:48 +0200
commit

2f4fd4b7323fa10f54e3c4d4b2392fa75cd34211

parent

98118dee608e25c8096d6c3ed79a62bed285f3a6

1 files changed, 11 insertions(+), 0 deletions(-)

jump to
M system/prefect.nixsystem/prefect.nix
@@ -101,5 +101,16 @@ networking = {     hostName = "prefect";
   };
 
+  services.transmission = {
+    enable = true;
+    openFirewall = true;
+    user = "alan";
+    group = "users";
+    settings = {
+      download-dir = "/mnt/data/Transmission/Storage";
+    };
+  };
+  systemd.services.transmission.requires = [ "mnt-data.mount" ];
+
   system.stateVersion = "22.05";
 }