summary refs log tree commit diff
path: root/nixos/modules/services/torrent/transmission.nix
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2019-09-01 03:07:23 +0200
committerFlorian Klink <flokli@flokli.de>2019-09-01 19:06:38 +0200
commitf74735c9d7e7b978827ff17b5f8cb375753dca0b (patch)
tree75809b54a017e6ac94cf507f14cf83387299b877 /nixos/modules/services/torrent/transmission.nix
parent7f42adf7a2a6ab0f18dd441820f1089a7b2c0cfd (diff)
downloadnixpkgs-f74735c9d7e7b978827ff17b5f8cb375753dca0b.tar
nixpkgs-f74735c9d7e7b978827ff17b5f8cb375753dca0b.tar.gz
nixpkgs-f74735c9d7e7b978827ff17b5f8cb375753dca0b.tar.bz2
nixpkgs-f74735c9d7e7b978827ff17b5f8cb375753dca0b.tar.lz
nixpkgs-f74735c9d7e7b978827ff17b5f8cb375753dca0b.tar.xz
nixpkgs-f74735c9d7e7b978827ff17b5f8cb375753dca0b.tar.zst
nixpkgs-f74735c9d7e7b978827ff17b5f8cb375753dca0b.zip
nixos: remove dependencies on local-fs.target
Since https://github.com/NixOS/nixpkgs/pull/61321, local-fs.target is
part of sysinit.target again, meaning units without
DefaultDependencies=no will automatically depend on it, and the manual
set dependencies can be dropped.
Diffstat (limited to 'nixos/modules/services/torrent/transmission.nix')
-rw-r--r--nixos/modules/services/torrent/transmission.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/torrent/transmission.nix b/nixos/modules/services/torrent/transmission.nix
index a94a471361e..7409eb8cdcb 100644
--- a/nixos/modules/services/torrent/transmission.nix
+++ b/nixos/modules/services/torrent/transmission.nix
@@ -102,7 +102,7 @@ in
   config = mkIf cfg.enable {
     systemd.services.transmission = {
       description = "Transmission BitTorrent Service";
-      after = [ "local-fs.target" "network.target" ] ++ optional apparmor "apparmor.service";
+      after = [ "network.target" ] ++ optional apparmor "apparmor.service";
       requires = mkIf apparmor [ "apparmor.service" ];
       wantedBy = [ "multi-user.target" ];