We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5308bbf commit 8df7c06Copy full SHA for 8df7c06
flake.nix
@@ -32,7 +32,7 @@
32
}:
33
let
34
inherit (nixpkgs) lib;
35
- # Collect all the build.nix files (flake-parts module)
+ # Collect all the build.nix files (flake-parts modules)
36
buildDotNixes = import ./nix/findFilesRecursive.nix {
37
inherit lib;
38
toInclude = lib.hasSuffix "build.nix";
@@ -43,7 +43,7 @@
43
44
imports = [
45
inputs.pre-commit-hooks.flakeModule
46
- ./pkgs.nix
+ ./nix/pkgs.nix
47
]
48
++ buildDotNixes;
49
@@ -59,7 +59,12 @@
59
flake.hydraJobs = import ./nix/hydra.nix {
60
flake = self;
61
62
- systems = [ "x86_64-linux" ];
+ systems = [
63
+ "x86_64-linux"
64
+ "x86_64-darwin"
65
+ "aarch64-linux"
66
+ "aarch64-darwin"
67
+ ];
68
};
69
70
pkgs.nix nix/pkgs.nixpkgs.nix renamed to nix/pkgs.nix
0 commit comments