Add just tool and zlib for Python venv extensions

This commit is contained in:
2026-04-17 22:35:13 +02:00
parent 82f42b9329
commit 44d9cc1498
2 changed files with 5 additions and 5 deletions
+3 -1
View File
@@ -28,6 +28,7 @@
tldr tldr
htop htop
iotop iotop
just
# Container tools # Container tools
podman podman
podman-compose podman-compose
@@ -35,8 +36,9 @@
claude-code claude-code
opencode opencode
# C++ stdlib for Python venv native extensions # C++ stdlib and zlib for Python venv native extensions
pkgs.stdenv.cc.cc.lib pkgs.stdenv.cc.cc.lib
pkgs.zlib
# Custom packages # Custom packages
(pkgs.callPackage ../pkgs/ax {}) (pkgs.callPackage ../pkgs/ax {})
+2 -4
View File
@@ -21,6 +21,8 @@
}; };
initContent = '' initContent = ''
export LD_LIBRARY_PATH="${pkgs.stdenv.cc.cc.lib}/lib:${pkgs.zlib}/lib''${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
autoload -Uz vcs_info autoload -Uz vcs_info
precmd() { vcs_info } precmd() { vcs_info }
zstyle ':vcs_info:git:*' formats '%b' zstyle ':vcs_info:git:*' formats '%b'
@@ -28,10 +30,6 @@
PROMPT='%F{green}%n@%m%f:%F{blue}%~%f %F{240}''${vcs_info_msg_0_}%f %# ' PROMPT='%F{green}%n@%m%f:%F{blue}%~%f %F{240}''${vcs_info_msg_0_}%f %# '
''; '';
sessionVariables = {
LD_LIBRARY_PATH = "${pkgs.stdenv.cc.cc.lib}/lib";
};
shellAliases = { shellAliases = {
cat = "bat"; cat = "bat";
}; };