Added simple angle script Makefile and a simple shell nix

This commit is contained in:
Jonas Hahn
2025-12-18 10:58:26 +01:00
parent 2c10ddd173
commit 209dca235f
2 changed files with 105 additions and 0 deletions

12
shell.nix Normal file
View File

@@ -0,0 +1,12 @@
{ pkgs ? import <nixpkgs> {} }:
# Simple python shell for all packages
pkgs.mkShell {
buildInputs = with pkgs; [
(pkgs.python313.withPackages (ps: with ps; [
matplotlib
numpy
]))
];
}