add cursed hacks

This commit is contained in:
nora 2024-08-02 17:24:01 +02:00
parent ce8c65aeaf
commit 2da7939965
3 changed files with 14 additions and 4 deletions

View file

@ -1,4 +1,4 @@
{ pkgs ? import <nixpkgs> { }, ... }:
{ pkgs ? import <nixpkgs> { }, slides ? null, blog ? null, ... }:
let
generator = import ./builder { inherit pkgs; };
in
@ -8,6 +8,9 @@ pkgs.stdenv.mkDerivation {
src = ./.;
unpackSrc = false;
SUBMODULE_DIR_SLIDES = slides;
SUBMODULE_DIR_BLOG = blog;
WEBSITE_RNG_SEED = "99";
nativeBuildInputs = with pkgs; [ git hugo ];