{ 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; }; }