Jump to content

Sonarr: Difference between revisions

From Official NixOS Wiki
imported>Alexnortung
Basic setup
(No difference)

Revision as of 19:14, 24 August 2021

Sonarr can be installed as a service on NixOS in `configuration.nix`.

A basic setup is given as the following.

``` services.sonarr = {

 enable = true;
 openFirewall = true;

}; ```