PUBLISH: Update school for good and evil poster

This commit is contained in:
Campbell Alden 2025-04-23 00:10:17 +09:00
parent eae1db0662
commit bde7335465
30 changed files with 495 additions and 684 deletions

View file

@ -1,7 +1,13 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
let
myPython = pkgs.python311.withPackages (ps: with ps; [
requests
pyyaml
]);
in
pkgs.mkShell {
buildInputs = [
hugo
pkgs.hugo
myPython
];
}