Compare commits

..

No commits in common. "b2ca11c52138ff6a03f67862b778b0573c3e12d5" and "7bfd69a3eed1f1c1a527c960eb76a4d84d6d3237" have entirely different histories.

2 changed files with 4 additions and 5 deletions

View File

@ -19,7 +19,6 @@ in {
spotify spotify
unstable.vlc unstable.vlc
unstable.plex-media-player unstable.plex-media-player
unstable.jellyfin-media-player
unstable.obs-studio unstable.obs-studio
nicotine-plus nicotine-plus
irisDesktopItem irisDesktopItem

View File

@ -210,9 +210,9 @@
}; };
# Make the containers depend on their mounts # Make the containers depend on their mounts
systemd.services = { systemd.services = {
"podman-plex" = { after = [ "mnt-music.mount" "mnt-plex.mount" ]; }; "podman-plex" = { requires = [ "mnt-music.mount" "mnt-plex.mount" ]; };
"podman-jellyfin" = { after = [ "mnt-music.mount" "mnt-plex.mount" ]; }; "podman-jellyfin" = { requires = [ "mnt-music.mount" "mnt-plex.mount" ]; };
"podman-sabnzbd" = { after = [ "mnt-scratch.mount" ]; }; "podman-sabnzbd" = { requires = [ "mnt-scratch.mount" ]; };
"podman-lidarr" = { after = [ "mnt-music.mount" ]; }; "podman-lidarr" = { requires = [ "mnt-music.mount" ]; };
}; };
} }