Improve entangled worlds
All checks were successful
build / build (push) Successful in 22m12s

This commit is contained in:
2025-04-15 00:29:10 +02:00
parent d26c26988d
commit 95373805cd
2 changed files with 53 additions and 43 deletions

View File

@@ -13,7 +13,16 @@
"aarch64-darwin"
];
forAllSystems =
f: nixpkgs.lib.genAttrs allSystems (system: f { pkgs = import nixpkgs { inherit system; }; });
f:
nixpkgs.lib.genAttrs allSystems (
system:
f {
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
}
);
in
{
overlays = {