Fix oops in perception config
This commit is contained in:
parent
69f70daa12
commit
b2ca11c521
|
@ -210,9 +210,9 @@
|
||||||
};
|
};
|
||||||
# Make the containers depend on their mounts
|
# Make the containers depend on their mounts
|
||||||
systemd.services = {
|
systemd.services = {
|
||||||
"podman-plex" = { requires = [ "mnt-music.mount" "mnt-plex.mount" ]; };
|
"podman-plex" = { after = [ "mnt-music.mount" "mnt-plex.mount" ]; };
|
||||||
"podman-jellyfin" = { requires = [ "mnt-music.mount" "mnt-plex.mount" ]; };
|
"podman-jellyfin" = { after = [ "mnt-music.mount" "mnt-plex.mount" ]; };
|
||||||
"podman-sabnzbd" = { requires = [ "mnt-scratch.mount" ]; };
|
"podman-sabnzbd" = { after = [ "mnt-scratch.mount" ]; };
|
||||||
"podman-lidarr" = { requires = [ "mnt-music.mount" ]; };
|
"podman-lidarr" = { after = [ "mnt-music.mount" ]; };
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue