This commit is contained in:
41666 2025-04-21 17:24:14 -07:00
commit 4d1663e588
12 changed files with 341 additions and 0 deletions

16
flake.nix Normal file
View file

@ -0,0 +1,16 @@
{
description = "teapot is a static site generator using pure nix";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
markdoll.url = "git+https://codeberg.org/0x57e11a/markdoll.git";
};
outputs = { self, nixpkgs, flake-utils, ... }@inputs:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs { inherit system; };
in {
packages = import ./default.nix { inherit pkgs inputs; };
});
}