We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4c2e6f commit 5a9d86cCopy full SHA for 5a9d86c
tests/flake.nix
@@ -37,11 +37,29 @@
37
system = "aarch64-darwin";
38
39
modules = [
40
+ determinate.darwinModules.default
41
{
42
nix.enable = false;
43
system.stateVersion = 5;
44
}
45
];
46
}).system;
47
+
48
+ checks.aarch64-darwin.nix-darwin-custom-config =
49
+ (nix-darwin.lib.darwinSystem {
50
+ system = "aarch64-darwin";
51
52
+ modules = [
53
54
+ {
55
+ nix.enable = false;
56
+ system.stateVersion = 5;
57
+ determinate-nix.customSettings = {
58
+ extra-experimental-features = [ "build-time-fetch-tree" ];
59
+ flake-registry = "/etc/nix/flake-registry.json";
60
+ };
61
+ }
62
+ ];
63
+ }).system;
64
};
65
0 commit comments