feat(deertopia): *Arr suite

This commit is contained in:
Madeleine Sydney
2025-03-27 16:02:11 -06:00
parent 45a66fe1ab
commit 50af3792f9
19 changed files with 572 additions and 52 deletions

View File

@@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }:
let cfg = config.sydnix.deertopia.servarr.sabnzbd;
in {
options.sydnix.deertopia.servarr.sabnzbd = {
enable = lib.mkEnableOption "SABnzbd (via Nixarr)";
};
config = lib.mkIf cfg.enable {
nixarr.sabnzbd = {
enable = true;
# vpn.enable = true;
openFirewall = true;
guiPort = 43288;
};
};
}