infrastructure/nixos/hosts/hades/prowlarr/configuration.nix

11 lines
179 B
Nix
Raw Normal View History

2022-09-10 16:21:21 +02:00
{ config, pkgs, ... }:
{
networking.interfaces.eth0.useDHCP = true;
system.stateVersion = "21.05";
services.prowlarr = {
enable = true;
openFirewall = true;
};
}