Initial commit

This commit is contained in:
2020-11-11 15:38:01 +01:00
commit de3c663ccd
9 changed files with 664 additions and 0 deletions

8
shell.nix Normal file
View File

@@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
# keep this line if you use bash
pkgs.bashInteractive
];
}