update lockfile

This commit is contained in:
xunuwu 2025-08-14 05:23:23 +02:00
parent 858cd526b5
commit a07afd7082
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
3 changed files with 51 additions and 49 deletions

View file

@ -1,8 +1,10 @@
{pkgs, ...}: {
home.packages = let
zig_patched = pkgs.zig.overrideAttrs {patches = [./__zig_watch.patch];};
# zig_patched = pkgs.zig.overrideAttrs {patches = [./__zig_watch.patch];};
in [
zig_patched
(pkgs.zls.override {zig_0_14 = zig_patched;})
# zig_patched
# (pkgs.zls.override {zig_0_14 = zig_patched;})
pkgs.zig
pkgs.zls
];
}