nix: add overlay

This commit is contained in:
outfoxxed 2025-09-28 20:24:43 -07:00
parent 2119eb2205
commit b9905ef824
No known key found for this signature in database
GPG key ID: 4C88A185FB89301E
5 changed files with 22 additions and 11 deletions

View file

@ -2,6 +2,6 @@
clangStdenv,
gccStdenv,
}: {
clang = { buildStdenv = clangStdenv; };
gcc = { buildStdenv = gccStdenv; };
clang = { stdenv = clangStdenv; };
gcc = { stdenv = gccStdenv; };
}