Skip to content

Commit c617c5b

Browse files
committed
Try google-chrome
1 parent 15e7c5c commit c617c5b

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

Taskfile.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ tasks:
8989
cmds:
9090
- npm test
9191
env:
92-
CHROME_BIN: chromium
92+
CHROME_BIN: google-chrome
9393

9494
migrate:
9595
cmds:

flake.nix

+6-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
...
1010
}:
1111
flake-utils.lib.eachDefaultSystem (system: let
12-
pkgs = nixpkgs.legacyPackages.${system};
12+
pkgs = import nixpkgs {
13+
system = system;
14+
config.allowUnfree = true;
15+
};
1316
in {
1417
formatter = pkgs.alejandra;
1518
devShells = {
@@ -20,14 +23,13 @@
2023
go-task
2124
golangci-lint
2225
jekyll
23-
# note: nodejs_22 is broken for GitHub Actions
24-
nodejs_23
26+
nodejs_22
2527
nodePackages.prettier
2628
protobuf
2729
protoc-gen-go
2830
ruby
2931
] ++ (if stdenv.isLinux then [
30-
chromium
32+
google-chrome
3133
] else []);
3234
};
3335
};

0 commit comments

Comments
 (0)