blob: 0abfdf2d26f2461453e7d9b0d7572ae99bfc7f57 (
plain) (
blame)
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.radarr;
in {
options.nixfiles.modules.radarr = {
enable = mkEnableOption "Radarr";
domain = mkOption {
description = "Domain name sans protocol scheme.";
type = with types; str;
default = "radarr.${config.networking.fqdn}";
};
};
config = mkIf cfg.enable {
nixfiles.modules.nginx = {
enable = true;
upstreams.radarr.servers."127.0.0.1:7878" = {};
virtualHosts.${cfg.domain}.locations."/".proxyPass = "http://radarr";
};
services.radarr.enable = true;
};
}
|