Files
tn3270s/shell.nix
2020-11-11 15:38:01 +01:00

9 lines
135 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
# keep this line if you use bash
pkgs.bashInteractive
];
}