diff --git a/machines/perception/configuration.nix b/machines/perception/configuration.nix index 9692579..807ca32 100644 --- a/machines/perception/configuration.nix +++ b/machines/perception/configuration.nix @@ -210,9 +210,9 @@ }; # Make the containers depend on their mounts systemd.services = { - "podman-plex" = { requires = [ "mnt-music.mount" "mnt-plex.mount" ]; }; - "podman-jellyfin" = { requires = [ "mnt-music.mount" "mnt-plex.mount" ]; }; - "podman-sabnzbd" = { requires = [ "mnt-scratch.mount" ]; }; - "podman-lidarr" = { requires = [ "mnt-music.mount" ]; }; + "podman-plex" = { after = [ "mnt-music.mount" "mnt-plex.mount" ]; }; + "podman-jellyfin" = { after = [ "mnt-music.mount" "mnt-plex.mount" ]; }; + "podman-sabnzbd" = { after = [ "mnt-scratch.mount" ]; }; + "podman-lidarr" = { after = [ "mnt-music.mount" ]; }; }; }