rss-bridge: add extensions
All checks were successful
Build hosts / build-hosts (pull_request) Successful in 18s
Flake check / flake-check (pull_request) Successful in 20s

This commit is contained in:
sid 2026-05-05 23:47:21 +02:00
parent 4d5a925716
commit 14dbfbd222

View file

@ -1,8 +1,26 @@
{ inputs, constants, ... }:
{
inputs,
constants,
pkgs,
...
}:
{
imports = [ inputs.synix.nixosModules.rss-bridge ];
services.phpfpm.pools.rss-bridge = {
phpPackage = pkgs.php.withExtensions (
{ enabled, all }:
enabled
++ [
all.curl
all.mbstring
all.simplexml
all.intl
]
);
};
services.rss-bridge = {
enable = true;
reverseProxy = {