16 lines
264 B
Nix
16 lines
264 B
Nix
|
{
|
||
|
services.prowlarr = {
|
||
|
enable = true;
|
||
|
openFirewall = false;
|
||
|
};
|
||
|
|
||
|
systemd.services.prowlarr = {
|
||
|
bindsTo = [ "netns@wg.service" ];
|
||
|
after = [ "wg.service" ];
|
||
|
|
||
|
serviceConfig = {
|
||
|
NetworkNamespacePath = "/var/run/netns/wg";
|
||
|
};
|
||
|
};
|
||
|
}
|