Files
homelab/services/media/radarr.nix
T
darmanandClaude Sonnet 5 6f24ab69ad docs: condense comments across the repo
Comments had drifted into multi-paragraph narrative (git commit
lineage, debugging stories, restated code) in several hot spots
(scripts/deploy, hermes-agent.nix, flake.nix, gitea.nix, headscale.nix).
Trim every comment to its load-bearing "why" — gotchas, safety
warnings, and non-obvious rationale survive verbatim in substance,
just tightened to 1-2 sentences; historical narrative and anything
already covered in CLAUDE.md is cut. No code/logic changed.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01UJqEmY1y3AYX3JoX4Y6b21
2026-09-18 21:36:30 +02:00

18 lines
631 B
Nix

{ ... }:
# Radarr — movie library manager, feeds off SABnzbd/Prowlarr; dataDir points
# at config migrated from the old ZimaOS docker stack. Unlike prowlarr, this
# module uses a static `radarr` user (no DynamicUser) and only auto-chowns
# dataDir at its own default path, so the migrated dir needs a manual
# one-time chown 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" ];
}