File tree Expand file tree Collapse file tree 2 files changed +12
-17
lines changed Expand file tree Collapse file tree 2 files changed +12
-17
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- description = "Flake to develop the CDapp using nix(OS)" ;
2
+ description = "Flake to develop the Colony docs using nix(OS)" ;
3
3
4
4
inputs = {
5
- # node 20.11.0
6
- nixpkgs_node . url = "github:NixOS/nixpkgs/97b17f32362e475016f942bbdfda4a4a72a8a652" ;
5
+ nixpkgs . url = "github:NixOS/nixpkgs/nixos-unstable" ;
7
6
} ;
8
7
9
8
outputs = {
10
9
self ,
11
- nixpkgs_node
10
+ nixpkgs ,
12
11
} : {
13
- devShell . x86_64-linux = with nixpkgs_node . legacyPackages . x86_64-linux ;
12
+ devShell . x86_64-linux = with nixpkgs . legacyPackages . x86_64-linux ;
14
13
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" ;
21
16
} ;
22
17
} ;
23
18
}
You can’t perform that action at this time.
0 commit comments