12 lines
203 B
Nix
12 lines
203 B
Nix
{ ... }:
|
|
{
|
|
# Enable the sonarr service
|
|
services.sonarr = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
group = "media";
|
|
};
|
|
|
|
# Ensure that the media group exists
|
|
users.groups.media = { };
|
|
}
|