gen2space/default.nix
2020-04-28 03:24:51 -07:00

22 lines
537 B
Nix

{ pkgs ? import <nixpkgs> {}
, callPackage ? pkgs.callPackage
, wandardFrontUtils ? callPackage (
builtins.fetchGit {
url = "https://git.wizbos.club/wizbos-pub/wand-front-utils.git";
rev = "4565d0858fc62064d619454b558689649af28712";
}
) {}
, ...
}:
with wandardFrontUtils;
mkWandardFront {
src = ./.;
name = "gen2.space";
description = "notgne2's shitty pages";
backgroundColor = "#220044";
themeColor = "#004400";
routes =
[ "/" "/about" "/404" "/posts" "/posts/viveahk" "/posts/librebasics" ];
}