From 2a76eb0d254dc20c9172885e3e4a213d2eb13bdf Mon Sep 17 00:00:00 2001 From: alydev Date: Mon, 19 Jan 2026 01:39:54 +1000 Subject: [PATCH 1/2] 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; From 2db2cb402fd2fb46e488ac27959a2e90aadd76bb Mon Sep 17 00:00:00 2001 From: alydev Date: Mon, 19 Jan 2026 01:43:44 +1000 Subject: [PATCH 2/2] update --- system/global.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/system/global.nix b/system/global.nix index d6f83ae..1bde7d5 100644 --- a/system/global.nix +++ b/system/global.nix @@ -5,13 +5,10 @@ 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 libgcc - gnumake cmake extra-cmake-modules + gnumake cmake extra-cmake-modules zlib ]; programs.nix-ld = { enable = true; - libraries = with pkgs; [ - stdenv.cc.cc.lib - ]; }; programs.nixvim = { enable = true;