Add sysDevicesSupport to nixpkgs overlay

This commit is contained in:
Aleix Boné 2025-10-06 17:19:27 +02:00
parent 510d9046ce
commit 81d74d8f75
No known key found for this signature in database

View File

@ -6,4 +6,10 @@
"/sys/devices/system/cpu"
"/sys/devices/system/node"
];
# similar to cudaSupport, this can be used to activate certain features
# conditionally.
nixpkgs.overlays = [
(final: prev: { sysDevicesSupport = true; })
];
}