fastfetch: fix uninitialized error

+5
+5
pkgs/tools/misc/fastfetch/default.nix
··· 101 101 "-DENABLE_SYSTEM_YYJSON=YES" 102 102 ]; 103 103 104 + env.NIX_CFLAGS_COMPILE = toString [ 105 + # Needed with GCC 12 106 + "-Wno-error=uninitialized" 107 + ]; 108 + 104 109 postInstall = '' 105 110 wrapProgram $out/bin/fastfetch \ 106 111 --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath finalAttrs.buildInputs}"