From bf3b8b3270466f96123de50d265688673e1d6f6f Mon Sep 17 00:00:00 2001 From: blake Date: Wed, 8 Oct 2025 00:25:27 -0500 Subject: [PATCH] 78 current 2025-10-08 00:16:03 25.05.20251001.5b5be50 6.12.49 * --- flake.nix | 2 +- hosts/snowbelle/configuration.nix | 5 ++--- modules/homelab/services/arr/prowlarr/default.nix | 2 +- modules/homelab/services/arr/sonarr/default.nix | 2 +- modules/homelab/services/default.nix | 2 ++ modules/homelab/services/default.nix.template | 2 +- 6 files changed, 8 insertions(+), 7 deletions(-) diff --git a/flake.nix b/flake.nix index c941993..2ff965f 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,6 @@ # flake for blakes nixos config # define new devices in outputs -# generation: 77 current 2025-10-08 00:10:23 25.05.20251001.5b5be50 6.12.49 * +# generation: 78 current 2025-10-08 00:16:03 25.05.20251001.5b5be50 6.12.49 * { description = "blakes nix config"; inputs = { diff --git a/hosts/snowbelle/configuration.nix b/hosts/snowbelle/configuration.nix index aacbc3d..0717293 100644 --- a/hosts/snowbelle/configuration.nix +++ b/hosts/snowbelle/configuration.nix @@ -32,10 +32,9 @@ jellyfin.enable = true; vaultwarden.enable = true; gitea.enable = true; - sonarr.enable = true; - sonarr.port = 7105; prowlarr.enable = true; - prowlarr.port = 7104; + radarr.enable = true; + sonarr.enable = true; }; }; diff --git a/modules/homelab/services/arr/prowlarr/default.nix b/modules/homelab/services/arr/prowlarr/default.nix index c5b1ef0..ddde5e0 100644 --- a/modules/homelab/services/arr/prowlarr/default.nix +++ b/modules/homelab/services/arr/prowlarr/default.nix @@ -13,7 +13,7 @@ in # set port options port = lib.mkOption { type = lib.types.int; - default = default_port; + default = 7104; description = "set port for prowlarr (default: ${toString default_port}"; }; diff --git a/modules/homelab/services/arr/sonarr/default.nix b/modules/homelab/services/arr/sonarr/default.nix index f43d01a..8bbd2e1 100644 --- a/modules/homelab/services/arr/sonarr/default.nix +++ b/modules/homelab/services/arr/sonarr/default.nix @@ -12,7 +12,7 @@ in port = lib.mkOption { type = lib.types.int; - default = default_port; + default = 7105; description = "set port for sonarr (${toString default_port})"; }; diff --git a/modules/homelab/services/default.nix b/modules/homelab/services/default.nix index 57ef116..80c7da3 100644 --- a/modules/homelab/services/default.nix +++ b/modules/homelab/services/default.nix @@ -9,6 +9,7 @@ ./gitea/default.nix ./arr/prowlarr/default.nix ./arr/sonarr/default.nix + ./arr/radarr/default.nix ]; @@ -17,4 +18,5 @@ modules.services.gitea.enable = lib.mkDefault false; modules.services.prowlarr.enable = lib.mkDefault false; modules.services.sonarr.enable = lib.mkDefault false; + modules.services.radarr.enable = lib.mkDefault false; } diff --git a/modules/homelab/services/default.nix.template b/modules/homelab/services/default.nix.template index fa88e89..1cbe84d 100644 --- a/modules/homelab/services/default.nix.template +++ b/modules/homelab/services/default.nix.template @@ -13,7 +13,7 @@ in # set port options port = lib.mkOption { type = lib.types.int; - default = default_port; + default = ; description = "set port for (default: ${toString default_port}"; };