Files
dotfiles/nixos/mirai/services/prowlarr.nix
2025-07-29 13:58:29 +05:30

14 lines
219 B
Nix

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