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 committed by Martin Wimpress
parent 45dd058774
commit 89fa572c85
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 {