From 56b5e554192ea87fa3554b49c7b1f12e6fa72b0f Mon Sep 17 00:00:00 2001 From: stupidcomputer Date: Mon, 24 Jun 2024 04:57:59 -0500 Subject: [PATCH] add a shell.nix to make my life easier. --- shell.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..3df34bc --- /dev/null +++ b/shell.nix @@ -0,0 +1,14 @@ +# thanks nixos wiki +{ pkgs ? import {} }: + +let + my-python-packages = ps: with ps; [ + openpyxl + ]; +in + pkgs.mkShell { + packages = [ + (pkgs.python3.withPackages my-python-packages) + pkgs.libreoffice + ]; + }