summaryrefslogtreecommitdiff
path: root/modules/nixos/sonarr.nix
blob: 8c7917560d6cceb512f124700ed9249c51a62aec (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
{
  config,
  lib,
  ...
}:
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.fqdn}";
    };
  };

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

    services.sonarr.enable = true;
  };
}