Files
dotfiles/nixos/tako/services/prowlarr.nix
2025-11-26 18:15:12 +05:30

14 lines
219 B
Nix

{...}: {
services = {
prowlarr = {
enable = true;
settings = {
auth = {
authentication_enabled = true;
authentication_method = "External";
};
};
};
};
}