Skip to content

Commit 8df7c06

Browse files
committed
Enable hydraJobs on all support systems
1 parent 5308bbf commit 8df7c06

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

flake.nix

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
}:
3333
let
3434
inherit (nixpkgs) lib;
35-
# Collect all the build.nix files (flake-parts module)
35+
# Collect all the build.nix files (flake-parts modules)
3636
buildDotNixes = import ./nix/findFilesRecursive.nix {
3737
inherit lib;
3838
toInclude = lib.hasSuffix "build.nix";
@@ -43,7 +43,7 @@
4343

4444
imports = [
4545
inputs.pre-commit-hooks.flakeModule
46-
./pkgs.nix
46+
./nix/pkgs.nix
4747
]
4848
++ buildDotNixes;
4949

@@ -59,7 +59,12 @@
5959
flake.hydraJobs = import ./nix/hydra.nix {
6060
flake = self;
6161
inherit lib;
62-
systems = [ "x86_64-linux" ];
62+
systems = [
63+
"x86_64-linux"
64+
"x86_64-darwin"
65+
"aarch64-linux"
66+
"aarch64-darwin"
67+
];
6368
};
6469

6570
};
File renamed without changes.

0 commit comments

Comments
 (0)