use the nixos module for sonarr

This commit is contained in:
sadan 2025-03-12 22:31:56 -04:00
parent b07403e610
commit bd7cf25145
No known key found for this signature in database
2 changed files with 9 additions and 8 deletions

View file

@ -1,11 +1,13 @@
{ ... }:
{
home = {
file = {
sonarr_compose = {
source = ./docker-compose.yml;
target = "./src/sonarr/docker-compose.yml";
};
imports = [
./nginx.nix
];
services = {
sonarr = {
enable = true;
group = "media";
dataDir = "/storage/sonarrConf";
};
};
}