build(nix/flake): adding the asm_lsp_config config var

This commit is contained in:
Raphael 2025-12-06 19:54:21 +01:00
parent d7b40045d1
commit 6559f4b9b0
No known key found for this signature in database

View file

@ -49,6 +49,7 @@
xxd xxd
valgrind valgrind
clang-tools clang-tools
asm-lsp
] ]
++ ( ++ (
if pkgs.stdenv.isLinux then if pkgs.stdenv.isLinux then
@ -63,6 +64,7 @@
shellHook = '' shellHook = ''
export AS=nasm export AS=nasm
export CC='clang' export CC='clang'
export ASM_LSP_CONFIG="$(pwd)/asm-lsp.toml"
printf "\n\033[0;90mASM env loaded for: \033[38;5;220m${system}\033[0m\n" printf "\n\033[0;90mASM env loaded for: \033[38;5;220m${system}\033[0m\n"
''; '';
}; };