Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
Add Nix-Shell configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
bwolf committed Oct 21, 2021
1 parent e544607 commit f147f05
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,7 @@ cert-manager-webhook-gandi
/charts/

# JetBrains
.idea
.idea

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

let
unstable = import (builtins.fetchTarball {
name = "nixos-unstable-2021-09-12";
url = "https://github.com/nixos/nixpkgs/archive/2ce4d21663113020195f1d953e360213954645b3.tar.gz";
sha256 = "15pnbmm702a4ni8dm2jdwl46b20qw7gfm5chlrvn7w54cm3h9p0c";
}) {};
in pkgs.mkShell {
buildInputs = with unstable; [
go_1_16
gopls
docker-compose
postgresql_13
];
}

0 comments on commit f147f05

Please sign in to comment.