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

16 lines
273 B
Nix
Raw Normal View History

2022-10-20 12:37:09 +02:00
{ config, pkgs, ... }:
{
2022-10-31 10:41:17 +01:00
system.stateVersion = "22.11";
2022-10-20 12:37:09 +02:00
networking.interfaces.eth0.useDHCP = true;
fileSystems."/mnt/storage" = {
device = "storage:/mnt/storage";
fsType = "nfs";
};
2022-10-31 23:14:35 +01:00
services.bazarr = {
enable = true;
openFirewall = true;
};
2022-10-20 12:37:09 +02:00
}