nixpkgs/nixos/tests/freshrss/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
412 B
Nix
Raw Normal View History

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
}