15 lines
373 B
Nix
15 lines
373 B
Nix
{
|
|
callPackage,
|
|
wandardFrontUtils ? callPackage (builtins.fetchGit {
|
|
url = https://git.wizbos.club/wizbos-pub/wand-front-utils.git;
|
|
rev = "deb012afccf2642a2a2544a25c9fe55fc1d96e99";
|
|
}) {},
|
|
...
|
|
}:
|
|
|
|
with wandardFrontUtils;
|
|
mkWandardFront {
|
|
src = ./.;
|
|
name = "gen2.space";
|
|
routes = [ "/" "/about" "/404" "/posts" "/posts/viveahk" "/posts/librebasics" ];
|
|
} |