mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 22:57:55 +00:00
23 lines
577 B
Nix
23 lines
577 B
Nix
{
|
|
buildHugoSite,
|
|
lib,
|
|
}:
|
|
|
|
buildHugoSite {
|
|
pname = "foodogsquared-hm-startpage";
|
|
version = "0.1.0";
|
|
src = lib.cleanSource ./.;
|
|
|
|
vendorHash = "sha256-Mi61QK1yKWIneZ+i79fpJqP9ew5r5vnv7ptr9YGq0Uk=";
|
|
|
|
preBuild = ''
|
|
install -Dm0644 ${../tinted-theming/base16/bark-on-a-tree.yaml} ./data/foodogsquared-homepage/themes/_dark.yaml
|
|
install -Dm0644 ${../tinted-theming/base16/albino-bark-on-a-tree.yaml} ./data/foodogsquared-homepage/themes/_dark.yaml
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "foodogsquared's homepage";
|
|
license = licenses.gpl3Only;
|
|
};
|
|
}
|