hackens.org/shell.nix
sinavir edbdb09cda
All checks were successful
build configuration / build (push) Successful in 30s
feat(autodeploy): Auto deploy to S3
2024-09-20 15:43:25 +02:00

8 lines
146 B
Nix

{ pkgs ? import (import ./npins).nixpkgs {} }:
pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (ps: [
ps.mkdocs
]))
];
}