feat: add python3 runtime and extend nix-ld libraries

This commit is contained in:
2026-04-14 16:59:37 +08:00
parent f6e2f92da3
commit 7e5e05470a
2 changed files with 18 additions and 3 deletions
+17 -3
View File
@@ -1,4 +1,10 @@
{ lib, username, ... }:
{
lib,
pkgs,
options,
username,
...
}:
{
# ── Shell ─────────────────────────────────────────────
@@ -12,8 +18,16 @@
interop.register = true;
};
# ── nix-ld (VSCode Remote, etc.) ────────────────────
programs.nix-ld.enable = true;
# ── nix-ld (VSCode Remote, mise, npm, etc.) ─────────
programs.nix-ld = {
enable = true;
libraries =
options.programs.nix-ld.libraries.default
++ (with pkgs; [
icu
libcrypt
]);
};
system.stateVersion = "24.11";
}