add a shell.nix to make my life easier.

This commit is contained in:
stupidcomputer 2024-06-24 04:57:59 -05:00
parent 985bda46bd
commit 56b5e55419
1 changed files with 14 additions and 0 deletions

14
shell.nix Normal file
View File

@ -0,0 +1,14 @@
# thanks nixos wiki
{ pkgs ? import <nixpkgs> {} }:
let
my-python-packages = ps: with ps; [
openpyxl
];
in
pkgs.mkShell {
packages = [
(pkgs.python3.withPackages my-python-packages)
pkgs.libreoffice
];
}