build: init static site at 0.0.1
This commit is contained in:
commit
fc489e80f0
6 changed files with 87 additions and 0 deletions
21
flake.nix
Normal file
21
flake.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
inputs.systems.url = "github:nix-systems/default-linux";
|
||||
outputs =
|
||||
inputs:
|
||||
let
|
||||
inherit (inputs.nixpkgs) lib legacyPackages;
|
||||
forEachSystem = lib.genAttrs (import inputs.systems);
|
||||
in
|
||||
{
|
||||
packages = forEachSystem (
|
||||
system:
|
||||
let
|
||||
pkgs = legacyPackages.${system};
|
||||
in
|
||||
{
|
||||
default = pkgs.callPackage ./default.nix { };
|
||||
}
|
||||
);
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue