From 155a9fd02cdb16da80abc1972b6839b8ecb22ef3 Mon Sep 17 00:00:00 2001 From: Aria Edmonds Date: Sat, 22 Mar 2025 16:32:30 +0800 Subject: [PATCH 1/2] venus: update containers --- venus/configuration.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/venus/configuration.nix b/venus/configuration.nix index b4eddaa..fe66f05 100644 --- a/venus/configuration.nix +++ b/venus/configuration.nix @@ -444,7 +444,7 @@ virtualisation.oci-containers.containers = { homeassistant = { - image = "ghcr.io/home-assistant/home-assistant:stable"; # 2024.1.5 + image = "ghcr.io/home-assistant/home-assistant:2025.3.4"; environment = { TZ = "Australia/Perth"; }; @@ -459,7 +459,7 @@ ]; }; sonarr = { - image = "ghcr.io/hotio/sonarr:latest"; # release-4.0.1.929 + image = "ghcr.io/hotio/sonarr:release-4.0.14.2939"; ports = ["20010:8989"]; networks = ["arr"]; environment = { @@ -474,7 +474,7 @@ ]; }; radarr = { - image = "ghcr.io/hotio/radarr:release"; # release-5.2.6.8376 + image = "ghcr.io/hotio/radarr:release-5.20.2.9777"; ports = ["20020:7878"]; networks = ["arr"]; environment = { @@ -489,7 +489,7 @@ ]; }; recyclarr = { - image = "ghcr.io/recyclarr/recyclarr"; # 6.0.2 + image = "ghcr.io/recyclarr/recyclarr:7.4.1"; user = "2003:2003"; networks = ["arr"]; environment = { @@ -501,7 +501,7 @@ ]; }; prowlarr = { - image = "ghcr.io/hotio/prowlarr"; # release-1.12.2.4211 + image = "ghcr.io/hotio/prowlarr:release-1.32.2.4987"; ports = ["20040:9696"]; networks = ["arr"]; environment = { @@ -515,7 +515,7 @@ ]; }; bazarr = { - image = "ghcr.io/hotio/bazarr:latest"; # release-1.4.0 + image = "ghcr.io/hotio/bazarr:release-1.5.1"; ports = ["20050:6767"]; networks = ["arr"]; environment = { @@ -530,7 +530,7 @@ ]; }; flaresolverr = { - image = "ghcr.io/flaresolverr/flaresolverr:latest"; + image = "ghcr.io/flaresolverr/flaresolverr:v3.3.21"; ports = ["20060:8191"]; networks = ["arr"]; environment = { @@ -546,7 +546,7 @@ ]; }; synclounge = { - image = "synclounge/synclounge:latest"; + image = "synclounge/synclounge:5.2.35"; ports = ["20080:8088"]; user = "2008:2008"; environment = { From 77731a7d72e897f94241aed55e06a33e30ebad6a Mon Sep 17 00:00:00 2001 From: Aria Edmonds Date: Sat, 22 Mar 2025 18:25:59 +0800 Subject: [PATCH 2/2] venus: qbittorrent start on boot this was previously disabled for zfs bug testing, and then never reenabled --- lib/services/qbittorrent.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/qbittorrent.nix b/lib/services/qbittorrent.nix index 81ebd98..2bc0762 100644 --- a/lib/services/qbittorrent.nix +++ b/lib/services/qbittorrent.nix @@ -24,7 +24,7 @@ description = "qBittorrent-nox service"; documentation = [ "man:qbittorrent-nox(1)" ]; after = [ "network.target" ]; - # wantedBy = [ "multi-user.target" ]; + wantedBy = [ "multi-user.target" ]; serviceConfig = { Type = "simple";