added direnv to automatically pull relevant packages

This commit is contained in:
Erik Grobecker 2024-10-15 13:04:51 +02:00
parent 2af00b311d
commit 680dacf4a2
Signed by: Erik
GPG key ID: 80D020D0ABBD3FB2
5 changed files with 64 additions and 0 deletions

9
shell.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = [
pkgs.typst
pkgs.typstyle
pkgs.tinymist
];
}