update opencode, add some readme comments for ideas to do

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-07-14 17:58:45 -05:00
parent 3f53aaf991
commit 2fc1f3e897
3 changed files with 33 additions and 8 deletions

8
hosts/lio/flake.lock generated
View file

@ -1155,16 +1155,16 @@
"opencode": {
"flake": false,
"locked": {
"lastModified": 1752162808,
"narHash": "sha256-rfYhlbSiSgpbbJazZf7P+bOiugVO+sYt+xFuYjBcBhY=",
"lastModified": 1752513658,
"narHash": "sha256-FX4dlDOEsKBTucZhzAWI2fUqBffc+UWXW00YpmO2EUs=",
"owner": "sst",
"repo": "opencode",
"rev": "6e375bef0dfdd49f292d3b4d0ec5268b94bafdac",
"rev": "ba676e7ae095a6e2089b2b061a1ec8f3cffd4e42",
"type": "github"
},
"original": {
"owner": "sst",
"ref": "v0.2.23",
"ref": "v0.3.5",
"repo": "opencode",
"type": "github"
}

View file

@ -9,7 +9,7 @@
ros_neovim.url = "git+https://git.joshuabell.xyz/ringofstorms/nvim";
opencode.url = "github:sst/opencode/v0.2.23";
opencode.url = "github:sst/opencode/v0.3.5";
opencode.flake = false;
};
@ -52,13 +52,13 @@
nixpkgs.overlays = [
(final: prev: {
opencode = nixpkgs-unstable.legacyPackages.${prev.system}.opencode.overrideAttrs (old: rec {
version = "0.2.23";
version = "0.3.5";
src = inputs.opencode;
node_modules = old.node_modules.overrideAttrs (nmOld: {
outputHash = "sha256-1ZxetDrrRdNNOfDOW2uMwMwpEs5S3BLF+SejWcRdtik=";
outputHash = "sha256-B/nTDMoADK+okDOROCCTF51GJALVlOMilEGWmLqmixA=";
});
tui = old.tui.overrideAttrs (tuiOld: {
vendorHash = "sha256-PRPJlLjzcxKpVSKKLc9fOEh41QZz2AH7vsLb1P5/tvg=";
vendorHash = "sha256-TkY4wVCaZ9JjwPE/K4ThCnxakcQwFmSVgUSYlWU4yiw=";
});
});
})