flake.nix: expose checks

This commit is contained in:
Someone Serge 2023-12-29 16:21:50 +00:00 committed by John
parent 2bae3b44f3
commit 6867651329

View file

@ -111,6 +111,11 @@
// lib.optionalAttrs (system == "x86_64-linux") { // lib.optionalAttrs (system == "x86_64-linux") {
rocm = config.legacyPackages.llamaPackagesRocm.llama-cpp; rocm = config.legacyPackages.llamaPackagesRocm.llama-cpp;
}; };
# Packages exposed in `.#checks` will be built by the CI and by
# `nix flake check`. Currently we expose all packages, but we could
# make more granular choices
checks = config.packages;
}; };
}; };
} }