From 2a76eb0d254dc20c9172885e3e4a213d2eb13bdf Mon Sep 17 00:00:00 2001 From: alydev Date: Mon, 19 Jan 2026 01:39:54 +1000 Subject: [PATCH] update --- system/global.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/system/global.nix b/system/global.nix index 36ada32..d6f83ae 100644 --- a/system/global.nix +++ b/system/global.nix @@ -4,8 +4,15 @@ boot.loader.efi.canTouchEfiVariables = true; nix.settings.experimental-features = [ "nix-command" "flakes" ]; environment.systemPackages = with pkgs; [ - cargo rustc just git wget gcc gnumake autoconf automake pkg-config cifs-utils ntfs3g yt-dlp + cargo rustc just git wget gcc gnumake autoconf automake pkg-config cifs-utils ntfs3g yt-dlp libgcc + gnumake cmake extra-cmake-modules ]; + programs.nix-ld = { + enable = true; + libraries = with pkgs; [ + stdenv.cc.cc.lib + ]; + }; programs.nixvim = { enable = true; defaultEditor = true;