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

16 lines
283 B
Nix
Raw Normal View History

2023-05-04 13:06:08 +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.radarr = {
enable = true;
dataDir = "/data/radarr";
openFirewall = true;
};
}