fix(nix): Do not use per-system overlays in Flake

This commit is contained in:
Steffen Vogel 2025-04-24 07:42:42 +02:00
parent 6b51f740a4
commit d31b0aec08
1 changed files with 2 additions and 2 deletions

View File

@ -22,11 +22,11 @@
schemas = flake-schemas.schemas;
# Define overlays for each supported system
overlays = forEachSupportedSystem ({pkgs, system, ...}: {
overlays = {
default = final: prev: {
quickemu = final.callPackage ./package.nix { };
};
});
};
# Define packages for each supported system
packages = forEachSupportedSystem ({pkgs, system, ...}: rec {