diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..5fae8cd --- /dev/null +++ b/shell.nix @@ -0,0 +1,14 @@ +{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-22.11.tar.gz") {} }: +pkgs.mkShell { + packages = [ + (pkgs.python3.withPackages (ps: [ + ps.flask + ps.qrcode + ])) + + pkgs.curl + pkgs.vim + pkgs.sqlite + pkgs.tmux + ]; +}