Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions usb-configuration-base.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,17 @@
efiInstallAsRemovable = true;
};

# onnxruntime (pulled in by Firefox's optional ML features) drags in
# cudnn-frontend and other CUDA-only packages that hit a
# FindCUDAToolkit-can't-find-nvcc bug on aarch64 / CMake 4.3. Firefox is
# the only consumer in this image, so disable CUDA in onnxruntime to
# sidestep the whole toolchain path.
nixpkgs.overlays = [
(final: prev: {
onnxruntime = prev.onnxruntime.override { cudaSupport = false; };
})
];

# File systems configuration handled automatically by ISO image

# Networking
Expand Down
Loading