From 9fc02f1489514fec2fc80e8adc705350510f4bc4 Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 5 May 2025 16:08:33 +0200 Subject: [PATCH] feat(flake): removing the C Flags (we're in cpp rn) --- flake.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/flake.nix b/flake.nix index 3451291..8ad2e6c 100644 --- a/flake.nix +++ b/flake.nix @@ -23,12 +23,9 @@ ); shellHook = '' - export DIRENV_LOG_FORMAT="" export NIX_SHOW_STATS=0 export NIX_HIDE_STATS=1 export CXX=clang++ - export CC=clang - export CFLAGS="-std=c89 -Wall -Werror -Wextra" export CXXFLAGS="-std=cpp98 -Wall -Werror -Wextra" printf "\n\033[0;90mCPP env loaded for: \033[38;5;220m${system}\033[0m\n" '';