{ depot, pkgs, ... }: let inherit (pkgs) graphviz runCommandNoCC writeText; tvlGraph = runCommandNoCC "tvl.svg" { nativeBuildInputs = with pkgs; [ fontconfig freetype cairo jetbrains-mono ]; } '' ${graphviz}/bin/neato -Tsvg ${./tvl.dot} > $out ''; homepage = writeText "index.html" '' The Virus Lounge

The Virus Lounge


The Virus Lounge

Welcome to The Virus Lounge. We're a random group of people who feel undersocialised in these trying times, and we've decided that there isn't enough spontaneous socialising on the internet.


Where did all these people come from?

It's pretty straightforward. Feel free to click on people, too.

${builtins.readFile tvlGraph}
''; in runCommandNoCC "website" {} '' mkdir -p $out/static cp ${homepage} $out/index.html cp -r ${./static}/* $out/static # Some assets are stolen from tazjin's blog cp ${depot.users.tazjin.homepage}/static/jetbrains-* $out/static cp ${depot.users.tazjin.homepage}/static/tazjin.css $out/static ''