infrastructure/nixos/hosts/hades/bazarr/configuration.nix
Vivian 2c16870d66
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
nixfmt
2023-05-04 13:08:10 +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;
};
}