Initial commit

This commit is contained in:
Martin Puppe 2020-11-24 03:18:27 +01:00
commit a754091989
2 changed files with 295 additions and 0 deletions

7
shell.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
openssh
racket-minimal
];
}