nixos/modules/services/radarr/default.nix
2023-11-07 23:19:48 +01:00

63 lines
1.3 KiB
Nix

# manages and downloads films
{ config, lib, ... }:
let
cfg = config.my.services.radarr;
inherit (config.networking) domain;
port = 7878;
in
{
options.my.services.radarr = with lib; {
enable = mkEnableOption "Radarr for films management";
apiKeyFile = lib.mkOption {
type = lib.types.path;
description = lib.mdDoc ''
File containing the api-key.
'';
};
};
config = lib.mkIf cfg.enable {
services.radarr = {
enable = true;
};
systemd.services.radarr = {
after = [ "network-online.target" ];
};
my.services.nginx.virtualHosts = [
{
subdomain = "movies";
inherit port;
}
];
my.services.exportarr.radarr = {
port = port + 1;
url = "http://127.0.0.1:${toString port}";
inherit (cfg) apiKeyFile;
};
services.prometheus.scrapeConfigs = [
{
job_name = "radarr";
static_configs = [{
targets = [ "127.0.0.1:${toString port + 1}" ];
labels = {
instance = config.networking.hostName;
};
}];
}
];
webapps.apps.radarr = {
dashboard = {
name = "Movies";
category = "media";
icon = "film";
link = "https://movies.${domain}";
};
};
};
}