Files
dotfiles/nixos/tako/services/prowlarr.nix
uttarayan21 497445c854
Some checks are pending
Flake checker / Build Nix targets (push) Waiting to run
feat(nixos): enable GNOME, add Droidcam, and update services config
2025-12-08 16:58:41 +05:30

15 lines
247 B
Nix

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