dotfiles/common/users/docker/sonarr/default.nix
2025-03-12 22:31:56 -04:00

13 lines
179 B
Nix

{ ... }:
{
imports = [
./nginx.nix
];
services = {
sonarr = {
enable = true;
group = "media";
dataDir = "/storage/sonarrConf";
};
};
}