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

15 lines
253 B
Nix
Raw Normal View History

2023-05-04 13:08:10 +02:00
_: {
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
}