fix: add missing opencode dep
This commit is contained in:
parent
15d700c9b6
commit
3ba6320171
1 changed files with 11 additions and 1 deletions
12
home.nix
12
home.nix
|
|
@ -74,6 +74,16 @@ let
|
||||||
"$out/share/gnome-shell/extensions/tailscale-gnome-qs@tailscale-qs.github.io"
|
"$out/share/gnome-shell/extensions/tailscale-gnome-qs@tailscale-qs.github.io"
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
# opencode's native watcher binding needs libstdc++.so.6 on NixOS.
|
||||||
|
wrappedOpencode = pkgs.symlinkJoin {
|
||||||
|
name = "opencode-wrapped";
|
||||||
|
paths = [ pkgs.opencode ];
|
||||||
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
||||||
|
postBuild = ''
|
||||||
|
wrapProgram "$out/bin/opencode" \
|
||||||
|
--prefix LD_LIBRARY_PATH : "${pkgs.lib.makeLibraryPath [ pkgs.stdenv.cc.cc.lib ]}"
|
||||||
|
'';
|
||||||
|
};
|
||||||
nasaApodWallpaper = pkgs.writeShellApplication {
|
nasaApodWallpaper = pkgs.writeShellApplication {
|
||||||
name = "nasa-apod-wallpaper";
|
name = "nasa-apod-wallpaper";
|
||||||
runtimeInputs = [
|
runtimeInputs = [
|
||||||
|
|
@ -350,7 +360,7 @@ in
|
||||||
# CLI
|
# CLI
|
||||||
bat
|
bat
|
||||||
ffmpeg-full
|
ffmpeg-full
|
||||||
opencode
|
wrappedOpencode
|
||||||
skills
|
skills
|
||||||
zellijNewTabZoxide
|
zellijNewTabZoxide
|
||||||
zellijSyncTabName
|
zellijSyncTabName
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue