shits broken, disable all we don't use

This commit is contained in:
2026-05-30 15:38:06 +02:00
parent c08a302f9b
commit f97e5209d2
+11 -30
View File
@@ -593,38 +593,19 @@ let
];
};
overlays.toplevelCudaRocmPkgs =
final: prev:
let
mkPkgs =
{
config ? { },
# overlays ? [ ],
}:
import prev.path {
# if we don't specify overlays then impure.nix will do its thing
# overlays = prev.overlays + overlays;
config = prev.config // config;
};
in
{
pkgsCuda = mkPkgs { config.cudaSupport = true; };
pkgsRocm = mkPkgs { config.rocmSupport = true; };
};
in
[
overlays.withDebug
overlays.withoutChecks
overlays.srcOnly
overlays.withInvalidateFetcherByDrvHash
overlays.withUnpacked
overlays.withTestMainProgram
overlays.withShellCheck
overlays.withTestCheckLdd
# overlays.withCudaOrRocm # WIP
#overlays.withDebug
#overlays.withoutChecks
#overlays.srcOnly
#overlays.withInvalidateFetcherByDrvHash
#overlays.withUnpacked
#overlays.withTestMainProgram
#overlays.withShellCheck
#overlays.withTestCheckLdd
## overlays.withCudaOrRocm # WIP
overlays.withCcache # WIP
overlays.withTwostagePythonBuildPassthru
overlays.withPytestCheckHooks
overlays.toplevelCudaRocmPkgs
#overlays.withTwostagePythonBuildPassthru
#overlays.withPytestCheckHooks
]