From 6dec6c90316f0c40515430aaaf63bafc4b16f808 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Thu, 8 Apr 2021 13:43:43 -0400 Subject: [PATCH] lorri --- .envrc | 1 + shell.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 .envrc create mode 100644 shell.nix diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..051d09d --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +eval "$(lorri direnv)" diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..51f655c --- /dev/null +++ b/shell.nix @@ -0,0 +1,5 @@ +{ pkgs ? import { } }: + +pkgs.mkShell { + buildInputs = with pkgs; [ go gopls goimports bashInteractive ]; +}