Fix oops in perception config

This commit is contained in:
Nathan McCarty 2023-04-18 17:56:31 -04:00
parent 69f70daa12
commit b2ca11c521
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
1 changed files with 4 additions and 4 deletions

View File

@ -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" ]; };
};
}