mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
21 lines
395 B
Nix
21 lines
395 B
Nix
{ 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";
|
|
};
|
|
};
|
|
}
|