blob: 8439ec0bf2eff5855a8de3b79665cefc7b38ebeb (
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
29
30
31
32
33
34
35
|
{
config,
lib,
...
}:
with lib; let
cfg = config.nixfiles.modules.lidarr;
in {
options.nixfiles.modules.lidarr = {
enable = mkEnableOption "Lidarr";
domain = mkOption {
description = "Domain name sans protocol scheme.";
type = with types; str;
default = "lidarr.${config.networking.domain}";
};
};
config = mkIf cfg.enable {
nixfiles.modules.nginx = {
enable = true;
upstreams.lidarr.servers."127.0.0.1:8686" = {};
virtualHosts.${cfg.domain} = {
locations."/".proxyPass = "http://lidarr";
extraConfig = nginxInternalOnly;
};
};
services.lidarr = {
enable = true;
user = "rtorrent";
group = "rtorrent";
};
};
}
|