snowflake/hosts/kariru/services/default.nix
notohh 0845808f39
Some checks failed
flake check / check (push) Successful in 10m2s
fmt check / check (push) Has been cancelled
hosts: init restic
2023-12-31 12:51:49 -05:00

38 lines
736 B
Nix

{...}: {
imports = [
./restic.nix
./traefik.nix
./torrent.nix
];
services.radarr = {
enable = true;
openFirewall = true;
dataDir = "/var/lib/radarr";
};
services.sonarr = {
enable = true;
openFirewall = true;
dataDir = "/var/lib/sonarr";
};
services.prowlarr = {
enable = true;
openFirewall = true;
};
services.readarr = {
enable = true;
openFirewall = true;
};
virtualisation.oci-containers.containers.whisparr = {
image = "hotio/whisparr:nightly-7b7bdb9";
ports = ["6969:6969"];
volumes = [
"/var/lib/whisparr:/config"
"/stash:/data/stash"
"/media/downloads:/data/downloads"
];
extraOptions = ["--network=host"];
};
}