10 lines
252 B
Nix
10 lines
252 B
Nix
{
|
|
hercules-ci.github-pages.branch = "master";
|
|
perSystem = { pkgs, config, ... }: {
|
|
hercules-ci.github-pages.settings.contents = config.packages.website.webroot;
|
|
packages = {
|
|
website = pkgs.callPackage ./package.nix { };
|
|
};
|
|
};
|
|
}
|