Commit c617c5b 1 parent 15e7c5c commit c617c5b Copy full SHA for c617c5b
File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 89
89
cmds :
90
90
- npm test
91
91
env :
92
- CHROME_BIN : chromium
92
+ CHROME_BIN : google-chrome
93
93
94
94
migrate :
95
95
cmds :
Original file line number Diff line number Diff line change 9
9
...
10
10
} :
11
11
flake-utils . lib . eachDefaultSystem ( system : let
12
- pkgs = nixpkgs . legacyPackages . ${ system } ;
12
+ pkgs = import nixpkgs {
13
+ system = system ;
14
+ config . allowUnfree = true ;
15
+ } ;
13
16
in {
14
17
formatter = pkgs . alejandra ;
15
18
devShells = {
20
23
go-task
21
24
golangci-lint
22
25
jekyll
23
- # note: nodejs_22 is broken for GitHub Actions
24
- nodejs_23
26
+ nodejs_22
25
27
nodePackages . prettier
26
28
protobuf
27
29
protoc-gen-go
28
30
ruby
29
31
] ++ ( if stdenv . isLinux then [
30
- chromium
32
+ google-chrome
31
33
] else [ ] ) ;
32
34
} ;
33
35
} ;
You can’t perform that action at this time.
0 commit comments