docs: switch to book-theme

This commit is contained in:
Mike A.
2025-08-04 16:09:40 +02:00
parent 89e2a5d208
commit ea880d5d49
5 changed files with 49 additions and 8 deletions

View File

@@ -1,18 +1,21 @@
{ pkgs ? import <nixpkgs> {} }:
{
pkgs ? import <nixpkgs> { },
}:
let
unstable = import (fetchTarball https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz) { };
unstable = import (fetchTarball "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz") { };
in
pkgs.mkShell {
packages = with pkgs; [
python312
unstable.uv
gh
graphviz
];
shellHook = ''
if [[ -d .venv/ ]]; then
source .venv/bin/activate
fi
if [[ -d .venv/ ]]; then
source .venv/bin/activate
fi
'';
}
}