diff --git a/modules/bootstrap-default.nix b/modules/bootstrap-default.nix index 32f4d69..ece7d72 100644 --- a/modules/bootstrap-default.nix +++ b/modules/bootstrap-default.nix @@ -114,7 +114,6 @@ jellyseerr.storage = "75Mi"; radarr.storage = "300Mi"; prowlarr.storage = "150Mi"; - sonarr.storage = "250Mi"; bazarr.storage = "25Mi"; minecraft.storage = "1Gi"; ntfy.storage = "300Mi"; diff --git a/modules/media.nix b/modules/media.nix index a9b4565..d75a718 100644 --- a/modules/media.nix +++ b/modules/media.nix @@ -481,7 +481,10 @@ in { }; volumes = { - config.persistentVolumeClaim.claimName = "sonarr"; + config.hostPath = { + path = "/mnt/longhorn/persistent/volumes/sonarr"; + type = "Directory"; + }; media.hostPath = { path = "/mnt/longhorn/persistent/media"; @@ -822,11 +825,6 @@ in { storage = "150Mi"; }; - sonarr = lib.mkIf cfg.sonarr.enable { - volumeName = "sonarr"; - storage = "250Mi"; - }; - bazarr = lib.mkIf cfg.bazarr.enable { volumeName = "bazarr"; storage = "25Mi";