Skip to content

Commit

Permalink
chore: add a basic nix shell config for go
Browse files Browse the repository at this point in the history
  • Loading branch information
NickLarsenNZ committed Nov 6, 2024
1 parent 54b5070 commit 143f1ab
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,7 @@ tags
[._]*.un~
kubeconfig
.kube

# Nix / Direnv
.direnv/
.envrc
10 changes: 10 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> { } }:

pkgs.mkShell {
name = "";
packages = [ ];
buildInputs = [ ];
nativeBuildInputs = with pkgs; [
go_1_22
];
}

0 comments on commit 143f1ab

Please sign in to comment.