config/services/sonarr.nix

13 lines
203 B
Nix
Raw Permalink Normal View History

2024-11-17 20:28:14 +01:00
{ ... }:
{
# Enable the sonarr service
services.sonarr = {
enable = true;
openFirewall = true;
group = "media";
};
# Ensure that the media group exists
users.groups.media = { };
}