www/packages.nix
2025-06-07 19:22:56 +02:00

20 lines
338 B
Nix

{
pkgs,
lib,
...
}:
{
production-content = lib.mkWwwContent {
domain = "berlin.ccc.de";
inherit (pkgs) system;
};
staging-content = lib.mkWwwContent {
domain = "staging.berlin.ccc.de";
inherit (pkgs) system;
};
local-content = lib.mkWwwContent {
domain = "localhost";
inherit (pkgs) system;
};
}