1
0
Fork 0
dotfiles/system/nixos/prowlarr.nix

33 lines
764 B
Nix
Raw Normal View History

2023-04-13 22:12:24 +00:00
{ pkgs, ... }:
2023-04-13 20:53:38 +00:00
{
services.prowlarr = {
enable = true;
openFirewall = false;
};
systemd.services.prowlarr = {
bindsTo = [ "netns@wg.service" ];
after = [ "wg.service" ];
serviceConfig = {
NetworkNamespacePath = "/var/run/netns/wg";
};
};
2023-04-13 22:12:24 +00:00
systemd.services.socat-prowlarr = {
description = "socat exposes prowlarr";
bindsTo = [ "netns@wg.service" ];
after = [ "network.target" "wg.service" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
Type = "simple";
DynamicUser = true;
NetworkNamespacePath = "/var/run/netns/wg";
ExecStart = "${pkgs.socat}/bin/socat UNIX-LISTEN:/tmp/prowlarr.sock,unlink-early,fork TCP4:127.0.0.1:80";
Restart = "on-failure";
};
};
2023-04-13 20:53:38 +00:00
}