From 62483524101711872a63e9e7955c558390b21842 Mon Sep 17 00:00:00 2001 From: Thiago Kenji Okada Date: Wed, 11 Dec 2024 21:29:33 +0000 Subject: [PATCH] actions: remove --all-systems from `nix flake check` --- .github/workflows/validate-flakes.yml | 2 +- actions/steps.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate-flakes.yml b/.github/workflows/validate-flakes.yml index bc5536ba..51cbf378 100644 --- a/.github/workflows/validate-flakes.yml +++ b/.github/workflows/validate-flakes.yml @@ -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 diff --git a/actions/steps.nix b/actions/steps.nix index e61be18b..c3c01e1a 100644 --- a/actions/steps.nix +++ b/actions/steps.nix @@ -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 = {