Skip to content

Commit

Permalink
only x86_64-linux
Browse files Browse the repository at this point in the history
  • Loading branch information
GTrunSec committed Apr 2, 2022
1 parent e7227cf commit 836fe9a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ jobs:
- uses: cachix/install-nix-action@v16
with:
install_url: https://github.com/numtide/nix-unstable-installer/releases/download/nix-2.8.0pre20220311_d532269/install
extra_nix_config: experimental-features = nix-command flakes
extra_nix_config: |
experimental-features = nix-command flakes
allow-import-from-derivation = true
- name: Run Nix Flake Check
run: nix -Lv flake check
Expand Down
5 changes: 3 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
nixpkgs,
...
} @ inputs:
(inputs.flake-utils.lib.eachDefaultSystem (
(inputs.flake-utils.lib.eachSystem ["x86_64-linux"](
#inputs.flake-utils.lib.eachDefaultSystem (
system: let
pkgs = import inputs.nixpkgs {
overlays = [
Expand Down Expand Up @@ -57,7 +58,7 @@
}
attrs');
in {
inherit evalModules;
inherit evalModules pkgs;

jobs = import ./jobs {inherit pkgs;};

Expand Down

0 comments on commit 836fe9a

Please sign in to comment.