Bruno BELANYI
7032ddef37
All checks were successful
continuous-integration/drone/push Build is passing
And when not possible, document why. Note for the future: there is some repetition in some modules to configure the correct value of the subdomain, which I happen to know will line up correctly thanks to the nginx wrapper. A good way to refactor this in the future would involve avoiding this repetition, allowing use to query the correct domain in some way...
26 lines
479 B
Nix
26 lines
479 B
Nix
# Usenet binary client.
|
|
{ config, lib, ... }:
|
|
let
|
|
cfg = config.my.services.sabnzbd;
|
|
port = 9090; # NOTE: not declaratively set...
|
|
in
|
|
{
|
|
options.my.services.sabnzbd = with lib; {
|
|
enable = mkEnableOption "SABnzbd binary news reader";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
services.sabnzbd = {
|
|
enable = true;
|
|
group = "media";
|
|
};
|
|
|
|
my.services.nginx.virtualHosts = [
|
|
{
|
|
subdomain = "sabnzbd";
|
|
inherit port;
|
|
}
|
|
];
|
|
};
|
|
}
|