only x86_64-linux

This commit is contained in:
GTrunSec 2022-04-02 14:41:57 -07:00
parent e7227cfe8c
commit 836fe9abd0
No known key found for this signature in database
GPG key ID: 2368FAFA4ABDD2A0
2 changed files with 6 additions and 3 deletions

View file

@ -10,7 +10,9 @@ jobs:
- uses: cachix/install-nix-action@v16 - uses: cachix/install-nix-action@v16
with: with:
install_url: https://github.com/numtide/nix-unstable-installer/releases/download/nix-2.8.0pre20220311_d532269/install 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 - name: Run Nix Flake Check
run: nix -Lv flake check run: nix -Lv flake check

View file

@ -12,7 +12,8 @@
nixpkgs, nixpkgs,
... ...
} @ inputs: } @ inputs:
(inputs.flake-utils.lib.eachDefaultSystem ( (inputs.flake-utils.lib.eachSystem ["x86_64-linux"](
#inputs.flake-utils.lib.eachDefaultSystem (
system: let system: let
pkgs = import inputs.nixpkgs { pkgs = import inputs.nixpkgs {
overlays = [ overlays = [
@ -57,7 +58,7 @@
} }
attrs'); attrs');
in { in {
inherit evalModules; inherit evalModules pkgs;
jobs = import ./jobs {inherit pkgs;}; jobs = import ./jobs {inherit pkgs;};