Update tocatta talk, add talks shell.nix and .envrc
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Alex 2023-01-18 15:25:04 +01:00
parent 0010f705ef
commit 3250be7c48
10 changed files with 20 additions and 0 deletions

1
doc/talks/.envrc Normal file
View File

@ -0,0 +1 @@
use_nix

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -266,6 +266,13 @@
\end{frame}
\begin{frame}
\frametitle{Garage's architecture}
\begin{center}
\includegraphics[width=.35\linewidth]{assets/garage.drawio.pdf}
\end{center}
\end{frame}
\begin{frame}
\frametitle{Two big problems}
\begin{enumerate}

12
doc/talks/shell.nix Normal file
View File

@ -0,0 +1,12 @@
{ pkgs ? import <nixpkgs> { } }:
let
latex = (pkgs.texlive.combine {
inherit (pkgs.texlive)
scheme-basic
beamer amsmath mathtools breqn
environ
multirow graphics import adjustbox tabu vwcol stmaryrd ulem ragged2e
dvisvgm dvipng wrapfig hyperref capt-of;
});
in pkgs.mkShell { nativeBuildInputs = [ pkgs.gnumake latex ]; }