Skip to content

Commit 2f7d65e

Browse files
committed
fix: fix and update flake files
1 parent c19f0eb commit 2f7d65e

File tree

2 files changed

+12
-17
lines changed

2 files changed

+12
-17
lines changed

flake.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
11
{
2-
description = "Flake to develop the CDapp using nix(OS)";
2+
description = "Flake to develop the Colony docs using nix(OS)";
33

44
inputs = {
5-
# node 20.11.0
6-
nixpkgs_node.url = "github:NixOS/nixpkgs/97b17f32362e475016f942bbdfda4a4a72a8a652";
5+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
76
};
87

98
outputs = {
109
self,
11-
nixpkgs_node
10+
nixpkgs,
1211
}: {
13-
devShell.x86_64-linux = with nixpkgs_node.legacyPackages.x86_64-linux;
12+
devShell.x86_64-linux = with nixpkgs.legacyPackages.x86_64-linux;
1413
mkShell {
15-
buildInputs = [nodejs_20 nodePackages.pnpm zsh];
16-
shellHook = ''
17-
if [ -n "$SHELL" ]; then
18-
exec $SHELL
19-
fi
20-
'';
14+
buildInputs = [nodejs_20 pnpm_8 zsh];
15+
shellHook = "exec zsh";
2116
};
2217
};
2318
}

0 commit comments

Comments
 (0)