Merge pull request #255145 from BuonHobo/patch-1

jellyfin: Start service after network is up

authored by

Fabián Heredia Montiel and committed by
GitHub
f8056c50 74b1db51

+2 -1
+2 -1
nixos/modules/services/misc/jellyfin.nix
··· 46 config = mkIf cfg.enable { 47 systemd.services.jellyfin = { 48 description = "Jellyfin Media Server"; 49 - after = [ "network.target" ]; 50 wantedBy = [ "multi-user.target" ]; 51 52 # This is mostly follows: https://github.com/jellyfin/jellyfin/blob/master/fedora/jellyfin.service
··· 46 config = mkIf cfg.enable { 47 systemd.services.jellyfin = { 48 description = "Jellyfin Media Server"; 49 + after = [ "network-online.target" ]; 50 + wants = [ "network-online.target" ]; 51 wantedBy = [ "multi-user.target" ]; 52 53 # This is mostly follows: https://github.com/jellyfin/jellyfin/blob/master/fedora/jellyfin.service