mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 16:10:05 +01:00
only x86_64-linux
This commit is contained in:
parent
e7227cfe8c
commit
836fe9abd0
2 changed files with 6 additions and 3 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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;};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue