1
2
3
4
5
6
7
8
9
10
11
|
{ pkgs, ... }:
# Landing site for Month of the Fediverse (fedimonth.softwaregardening.org).
# Served as a static Nix derivation via the softwaregardening nginx module,
# mirroring the sfttime.site pattern.
{
site = pkgs.runCommand "fedimonth-site" { } ''
mkdir -p $out
cp ${./index.html} $out/index.html
'';
}
|