Skip to content

Commit

Permalink
fix(nix): Allow unfree packages
Browse files Browse the repository at this point in the history
  • Loading branch information
DoomHammer committed Jan 7, 2025
1 parent e0524e2 commit 30a91c4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
{ ... }:
{
}
_: { }
8 changes: 6 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,12 @@ jobs:
- name: Nix Magic Cache
uses: DeterminateSystems/magic-nix-cache-action@main

- name: Check Flake
- name: Check root Flake
run: nix flake check

- name: Check the other Flake
run: cd .config/nix && nix flake check
run: |
cd .config/nix
export NIXPKGS_ALLOW_UNFREE=1
export NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1
nix flake check --impure

0 comments on commit 30a91c4

Please sign in to comment.