reproducable env with nix

This commit is contained in:
Hyperbel 2022-12-25 17:23:07 +01:00 committed by GitHub
parent 01772fade2
commit daa24581fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

14
shell.nix Normal file
View File

@ -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
];
}