Pin beads and opencode flake inputs to commit hashes

Prevents unexpected breakage from upstream changes.
To update: nix flake update beads opencode

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Dan 2026-01-05 20:56:25 -08:00
parent 80ac34fc5c
commit 2aa005b300
2 changed files with 4 additions and 2 deletions

View file

@ -18,6 +18,7 @@
"original": {
"owner": "steveyegge",
"repo": "beads",
"rev": "32a4a9e0603957c467a03fbec65734ef91acaa0b",
"type": "github"
}
},
@ -104,6 +105,7 @@
"original": {
"owner": "sst",
"repo": "opencode",
"rev": "f6fe709f6ee75427ba64829af25b64d9a3111569",
"type": "github"
}
},

View file

@ -11,12 +11,12 @@
};
beads = {
url = "github:steveyegge/beads";
url = "github:steveyegge/beads/32a4a9e0603957c467a03fbec65734ef91acaa0b";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
opencode = {
url = "github:sst/opencode";
url = "github:sst/opencode/f6fe709f6ee75427ba64829af25b64d9a3111569";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
};