18 lines
472 B
Nix
18 lines
472 B
Nix
{
|
|
callPackage,
|
|
wandardFrontUtils ? callPackage (builtins.fetchGit {
|
|
url = https://git.wizbos.club/wizbos-pub/wand-front-utils.git;
|
|
rev = "95bf0de9321edfd1d5c6e7ca0ccab878ce719762";
|
|
}) {},
|
|
...
|
|
}:
|
|
|
|
with wandardFrontUtils;
|
|
mkWandardFront {
|
|
src = ./.;
|
|
name = "gen2.space";
|
|
description = "notgne2's shitty pages";
|
|
backgroundColor = "#220044";
|
|
themeColor = "#004400";
|
|
routes = [ "/" "/about" "/404" "/posts" "/posts/viveahk" "/posts/librebasics" ];
|
|
} |