From b2ca11c52138ff6a03f67862b778b0573c3e12d5 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Tue, 18 Apr 2023 17:56:31 -0400 Subject: [PATCH] Fix oops in perception config --- machines/perception/configuration.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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" ]; }; }; }