- sabnzbd, prowlarr, sonarr, radarr, clonarr, seerr, cinephage, mediamanager services, wired into jupiter with LAN Caddy vhosts. - Gitea: migrated the old ZimaOS docker instance's data (sqlite db, 4 repos, no LFS objects) into the NixOS module's default stateDir layout. HTTP via Caddy; git SSH on its own built-in server at :2222 (not :222 - the unpriv gitea user can't bind <1024). - mediamanager-nix flake input for the mediamanager service. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
19 lines
725 B
Nix
19 lines
725 B
Nix
{ ... }:
|
|
|
|
# Radarr — movie library manager, feeds off SABnzbd/Prowlarr. dataDir points
|
|
# at the config migrated from the old ZimaOS docker stack (indexers/download
|
|
# client/history already set up). Unlike prowlarr, this module uses a static
|
|
# `radarr` user (no DynamicUser) and only auto-chowns dataDir when it's the
|
|
# module's own default path — since we point at a pre-existing migrated dir,
|
|
# chown it by hand once after first deploy:
|
|
# chown -R radarr:radarr /mnt/data/AppData/radarr/config
|
|
{
|
|
services.radarr = {
|
|
enable = true;
|
|
dataDir = "/mnt/data/AppData/radarr/config";
|
|
};
|
|
|
|
# Write access to the shared library/downloads dirs (owned darman:users).
|
|
users.users.radarr.extraGroups = [ "users" ];
|
|
}
|