service/sonarr: init from legacy

This commit is contained in:
Felix Buehler 2023-03-15 22:34:36 +01:00
parent bc32120c7d
commit 285102dc17
5 changed files with 43 additions and 22 deletions

View file

@ -1,21 +0,0 @@
{ config, pkgs, ... }:
{
services.sonarr = {
enable = true;
openFirewall = true;
};
systemd.services.sonarr = {
after = [ "network-online.target" ];
#unitConfig.RequiresMountsFor = [ "/storage" ];
};
webapps.apps.sonarr = {
dashboard = {
name = "Sonarr";
category = "manag";
icon = "tv";
link = "http://192.168.178.60:8989";
};
};
}