10 lines
191 B
Nix
10 lines
191 B
Nix
{ nixpkgs-unstable, ... }:
|
|
{
|
|
services.sonarr = {
|
|
enable = true;
|
|
package = nixpkgs-unstable.legacyPackages."x86_64-linux".sonarr;
|
|
user = "torrent";
|
|
group = "torrent";
|
|
};
|
|
}
|