From cd87745a78af13344642ab5c7c7797dabaf654ba Mon Sep 17 00:00:00 2001 From: tristan Date: Sun, 31 Dec 2023 00:33:48 +0000 Subject: [PATCH] add a readme --- README.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..184e238 --- /dev/null +++ b/README.md @@ -0,0 +1,31 @@ + +# Nixite + +A static site generator made in Nix. + +## Why + +Clearly there aren't already enough web frameworks out there. + +I thought it would be fun. + +I wanted to get better at Nix. + +Importing other people's styles / component libs could actually be a decent experience. + +You can process your site with the power of nixpkgs - eg you could process images using imagemagick. + +## How + +Read `flake.nix` for basic usage. + +The default package will build the site: +```sh +nix build . +``` + +You can also serve it locally (using caddy) +```sh +nix run .#serve +``` +