78 current 2025-10-08 00:16:03 25.05.20251001.5b5be50 6.12.49 *

This commit is contained in:
2025-10-08 00:25:27 -05:00
parent a12677cc6c
commit bf3b8b3270
6 changed files with 8 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
# flake for blakes nixos config # flake for blakes nixos config
# define new devices in outputs # 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"; description = "blakes nix config";
inputs = { inputs = {

View File

@@ -32,10 +32,9 @@
jellyfin.enable = true; jellyfin.enable = true;
vaultwarden.enable = true; vaultwarden.enable = true;
gitea.enable = true; gitea.enable = true;
sonarr.enable = true;
sonarr.port = 7105;
prowlarr.enable = true; prowlarr.enable = true;
prowlarr.port = 7104; radarr.enable = true;
sonarr.enable = true;
}; };
}; };

View File

@@ -13,7 +13,7 @@ in
# set port options # set port options
port = lib.mkOption { port = lib.mkOption {
type = lib.types.int; type = lib.types.int;
default = default_port; default = 7104;
description = "set port for prowlarr (default: ${toString default_port}"; description = "set port for prowlarr (default: ${toString default_port}";
}; };

View File

@@ -12,7 +12,7 @@ in
port = lib.mkOption { port = lib.mkOption {
type = lib.types.int; type = lib.types.int;
default = default_port; default = 7105;
description = "set port for sonarr (${toString default_port})"; description = "set port for sonarr (${toString default_port})";
}; };

View File

@@ -9,6 +9,7 @@
./gitea/default.nix ./gitea/default.nix
./arr/prowlarr/default.nix ./arr/prowlarr/default.nix
./arr/sonarr/default.nix ./arr/sonarr/default.nix
./arr/radarr/default.nix
]; ];
@@ -17,4 +18,5 @@
modules.services.gitea.enable = lib.mkDefault false; modules.services.gitea.enable = lib.mkDefault false;
modules.services.prowlarr.enable = lib.mkDefault false; modules.services.prowlarr.enable = lib.mkDefault false;
modules.services.sonarr.enable = lib.mkDefault false; modules.services.sonarr.enable = lib.mkDefault false;
modules.services.radarr.enable = lib.mkDefault false;
} }

View File

@@ -13,7 +13,7 @@ in
# set port options # set port options
port = lib.mkOption { port = lib.mkOption {
type = lib.types.int; type = lib.types.int;
default = default_port; default = <port>;
description = "set port for <service_name> (default: ${toString default_port}"; description = "set port for <service_name> (default: ${toString default_port}";
}; };