summaryrefslogtreecommitdiff
path: root/modules/sonarr.nix
blob: b11dda0aa8ac37bcc15ffd3e9fd3553eb512c9aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
  config,
  lib,
  libNginx,
  ...
}:
with lib;
let
  cfg = config.nixfiles.modules.sonarr;
in
{
  options.nixfiles.modules.sonarr = {
    enable = mkEnableOption "Sonarr";

    domain = mkOption {
      description = "Domain name sans protocol scheme.";
      type = with types; str;
      default = "sonarr.${config.networking.domain}";
    };
  };

  config = mkIf cfg.enable {
    ark.directories = [ "/var/lib/sonarr" ];

    nixfiles.modules.nginx = {
      enable = true;
      upstreams.sonarr.servers."127.0.0.1:8989" = { };
      virtualHosts.${cfg.domain} = {
        locations."/".proxyPass = "http://sonarr";
        extraConfig = libNginx.config.internalOnly;
      };
    };

    services.sonarr = {
      enable = true;
      user = "rtorrent";
      group = "rtorrent";
    };
  };
}