build: init static site at 0.0.1

This commit is contained in:
Mohammad Rafiq 2025-06-23 19:30:28 +08:00
commit fc489e80f0
No known key found for this signature in database
6 changed files with 87 additions and 0 deletions

21
flake.nix Normal file
View 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 { };
}
);
};
}