secrets/shell.nix

8 lines
114 B
Nix
Raw Normal View History

2020-11-24 03:18:27 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
openssh
racket-minimal
];
}