Add flake

This commit is contained in:
2023-11-03 16:50:36 +01:00
parent 5a8d24af9a
commit c71946d501
2 changed files with 115 additions and 1 deletions

View File

@ -11,16 +11,18 @@
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
overlays = [ devshell.overlay ];
overlays = [ devshell.overlays.default ];
};
myPython = pkgs.python311.withPackages (p: with p; [
# Basic
rich
numpy
# Web
flask
flask-sqlalchemy
sqlalchemy
]);
in {