2025-01-09 23:18:07 +01:00
|
|
|
{ system, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
extensions = import ./extensions.nix { inherit system pkgs; };
|
|
|
|
|
http-auth = import ./http-auth.nix { inherit system pkgs; };
|
|
|
|
|
none-auth = import ./none-auth.nix { inherit system pkgs; };
|
|
|
|
|
pgsql = import ./pgsql.nix { inherit system pkgs; };
|
2025-01-26 20:00:50 +01:00
|
|
|
nginx-sqlite = import ./nginx-sqlite.nix { inherit system pkgs; };
|
|
|
|
|
caddy-sqlite = import ./caddy-sqlite.nix { inherit system pkgs; };
|
2025-01-09 23:18:07 +01:00
|
|
|
}
|