Book layout

This commit is contained in:
2025-07-13 00:09:27 +02:00
parent 35479395d8
commit 2052c93e43
15 changed files with 119 additions and 0 deletions

21
flake.nix Normal file
View File

@ -0,0 +1,21 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = import nixpkgs {
inherit system;
};
in
with pkgs;
{
devShells.default = mkShell {
buildInputs = [ mdbook ];
};
}
);
}