Skip to content

Commit

Permalink
actions: remove --all-systems from nix flake check
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada committed Dec 11, 2024
1 parent 64c108f commit 6248352
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/validate-flakes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
extraPullNames: nix-community
name: thiagokokada-nix-configs
- name: Validate Flakes
run: nix flake check --all-systems --print-build-logs
run: nix flake check --print-build-logs
name: validate-flakes
"on":
- push
Expand Down
2 changes: 1 addition & 1 deletion actions/steps.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ with constants;
};
validateFlakesStep = {
name = "Validate Flakes";
run = "nix flake check --all-systems ${toString nixFlags}";
run = "nix flake check ${toString nixFlags}";
};
buildNixDarwinConfigurations =
{
Expand Down

0 comments on commit 6248352

Please sign in to comment.