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

16 lines
283 B
Nix
Raw Normal View History

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