Add nix shell environment

master
Elis Hirwing 2020-11-27 18:13:54 +01:00
commit fb028a6f94
Signed by: etu
GPG Key ID: D57EFA625C9A925F
2 changed files with 10 additions and 0 deletions

1
.envrc Normal file
View File

@ -0,0 +1 @@
use nix

9
shell.nix Normal file
View File

@ -0,0 +1,9 @@
{ pkgs ? (import <nixpkgs> {}) }:
pkgs.mkShell {
buildInputs = with pkgs; [
gnumake
go
gopls
];
}