infrastructure/nixos/hosts/hades/prowlarr/configuration.nix
2022-09-10 16:21:21 +02:00

11 lines
179 B
Nix

{ config, pkgs, ... }:
{
networking.interfaces.eth0.useDHCP = true;
system.stateVersion = "21.05";
services.prowlarr = {
enable = true;
openFirewall = true;
};
}