doc: set SOURCE_DATE_EPOCH so not stuck at 1980 in nix build

This commit is contained in:
Roland Conybeare 2025-07-13 21:21:38 -05:00
commit 96aa415920

View file

@ -185,6 +185,9 @@ pkgs.mkShell {
];
shellHook = ''
# override SOUCE_DATE_EPOCH to current time (otherwise will get 1980)
export SOURCE_DATE_EPOCH=$(date +%s)
echo "xo development environment loaded!"
'';
}