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

16 lines
283 B
Nix

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