Skip to content

Commit 59000fb

Browse files
committed
Add NIXPKGS_ALLOW_UNFREE env variable to CI workflow
1 parent d82d9b6 commit 59000fb

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ jobs:
1515
with:
1616
name: pre-commit-hooks
1717
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
18-
- run: nix-build --keep-going
18+
- run: nix-build --keep-going --impure
19+
env:
20+
NIXPKGS_ALLOW_UNFREE: 1
1921
tests-flakes:
2022
strategy:
2123
matrix:
@@ -28,5 +30,7 @@ jobs:
2830
with:
2931
name: pre-commit-hooks
3032
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
31-
- run: nix flake check --show-trace
33+
- run: nix flake check --show-trace --impure
34+
env:
35+
NIXPKGS_ALLOW_UNFREE: 1
3236
- run: nix eval .#lib.x86_64-linux.run --show-trace

0 commit comments

Comments
 (0)