infrastructure/nixos/hosts/hades/sonarr/configuration.nix
Victor 2c16870d66
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
nixfmt
2023-05-04 13:08:10 +02:00

15 lines
283 B
Nix

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