nix-config/modules/nixos/services/servarr/default.nix
Bruno BELANYI 1a08118ced
Some checks failed
ci/woodpecker/push/check Pipeline failed
nixos: services: servarr: migrate prowlarr
It's configured in the exact same way as other *arr apps, and thus
automatically gains the declarative port configuration now.

I also want to move the other two indexer modules under `servarr`, as
they are all closely related.
2025-03-31 11:22:52 +00:00

19 lines
433 B
Nix

# The total autonomous media delivery system.
# Relevant link [1].
#
# [1]: https://youtu.be/I26Ql-uX6AM
{ lib, ... }:
{
imports = [
./bazarr.nix
(import ./starr.nix "lidarr")
(import ./starr.nix "prowlarr")
(import ./starr.nix "radarr")
(import ./starr.nix "readarr")
(import ./starr.nix "sonarr")
];
options.my.services.servarr = {
enableAll = lib.mkEnableOption "media automation suite";
};
}