Skip to content

Commit

Permalink
chore: use stable nixpkgs in nix shell
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesRudolph committed Mar 10, 2024
1 parent 364955b commit 8db88ba
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{ pkgs ? import <nixpkgs> { }, unstable ? import <nixpkgs-unstable> { } }:
{ pkgs ? import <nixpkgs> { }
, unstable ? import <nixpkgs-unstable> {
config.allowUnfree = true;
}
}:

pkgs.mkShell {
NIX_SHELL = "collie-cli";
Expand All @@ -7,8 +11,8 @@ pkgs.mkShell {
'';

buildInputs = [
unstable.deno
pkgs.deno

# used for build scripts
pkgs.unzip
pkgs.gnused
Expand All @@ -19,10 +23,10 @@ pkgs.mkShell {
pkgs.google-cloud-sdk

# terraform
unstable.terraform
unstable.terragrunt
unstable.tflint
unstable.terraform-docs
pkgs.terraform
pkgs.terragrunt
pkgs.tflint
pkgs.terraform-docs

# for collie foundation docs
pkgs.nodejs
Expand Down

0 comments on commit 8db88ba

Please sign in to comment.