services: add sabnzbd
Its configuration isn't declarative :-(. Notably, the port needs to be changed from '8080' to '9090' in its configuration file (at '/var/lib/sabnzbd/').
This commit is contained in:
parent
89db21792c
commit
6038d0df60
|
@ -80,6 +80,8 @@
|
||||||
matrix.enable = true;
|
matrix.enable = true;
|
||||||
# The whole *arr software suite
|
# The whole *arr software suite
|
||||||
pirate.enable = true;
|
pirate.enable = true;
|
||||||
|
# Usenet client
|
||||||
|
sabnzbd.enable = true;
|
||||||
# Torrent client and webui
|
# Torrent client and webui
|
||||||
transmission = {
|
transmission = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
./media.nix
|
./media.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
./pirate.nix
|
./pirate.nix
|
||||||
|
./sabnzbd.nix
|
||||||
./transmission.nix
|
./transmission.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
{ config, lib, ... }:
|
{ config, lib, ... }:
|
||||||
let
|
let
|
||||||
needed = with config.my.services;
|
needed = with config.my.services;
|
||||||
jellyfin.enable || pirate.enable || transmission.enable;
|
jellyfin.enable || pirate.enable || sabnzbd.enable || transmission.enable;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config.users.groups.media = lib.mkIf needed { };
|
config.users.groups.media = lib.mkIf needed { };
|
||||||
|
|
28
services/sabnzbd.nix
Normal file
28
services/sabnzbd.nix
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
# Usenet binary client.
|
||||||
|
{ config, lib, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.my.services.sabnzbd;
|
||||||
|
|
||||||
|
domain = config.networking.domain;
|
||||||
|
sabnzbdDomain = "sabnzbd.${domain}";
|
||||||
|
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";
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."${sabnzbdDomain}" = {
|
||||||
|
forceSSL = true;
|
||||||
|
useACMEHost = domain;
|
||||||
|
|
||||||
|
locations."/".proxyPass = "http://localhost:${toString port}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue