initial commit
This commit is contained in:
commit
5162a852b3
13 changed files with 387 additions and 0 deletions
20
flake.nix
Normal file
20
flake.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
inputs.nixpkgs.url = "github:nixos/nixpkgs";
|
||||
inputs.hakyll-flakes.url = "github:Radvendii/hakyll-flakes";
|
||||
inputs.flake-utils.url = "github:numtide/flake-utils";
|
||||
|
||||
outputs = {
|
||||
self,
|
||||
hakyll-flakes,
|
||||
flake-utils,
|
||||
nixpkgs,
|
||||
}:
|
||||
flake-utils.lib.eachDefaultSystem (
|
||||
system:
|
||||
hakyll-flakes.lib.mkAllOutputs {
|
||||
inherit system;
|
||||
name = "website";
|
||||
src = ./.;
|
||||
}
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue