From 6559f4b9b0fcaea5833aebac27bbfd545831d9e0 Mon Sep 17 00:00:00 2001 From: Raphael Date: Sat, 6 Dec 2025 19:54:21 +0100 Subject: [PATCH] build(nix/flake): adding the asm_lsp_config config var --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index 7a047ae..a6499ea 100644 --- a/flake.nix +++ b/flake.nix @@ -49,6 +49,7 @@ xxd valgrind clang-tools + asm-lsp ] ++ ( if pkgs.stdenv.isLinux then @@ -63,6 +64,7 @@ shellHook = '' export AS=nasm 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" ''; };