infrastructure/nixos/hosts/hades/bazarr/configuration.nix
Victor 3dfe40e4e2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
apply deadnix
2023-05-04 13:06:08 +02:00

15 lines
253 B
Nix

_:
{
system.stateVersion = "22.11";
networking.interfaces.eth0.useDHCP = true;
fileSystems."/mnt/storage" = {
device = "storage:/mnt/storage";
fsType = "nfs";
};
services.bazarr = {
enable = true;
openFirewall = true;
};
}