gen2space/default.nix
2020-04-05 22:26:45 -07:00

17 lines
517 B
Nix

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