nix: automatic lockfile fixing to keep main building with nix

This commit is contained in:
Ari Lotter 2026-04-20 13:53:05 -04:00
parent ab37132e59
commit 6f079933cb
7 changed files with 396 additions and 73 deletions

View file

@ -7,7 +7,8 @@
let
hermes-agent = inputs.self.packages.${system}.default;
hermes-tui = inputs.self.packages.${system}.tui;
packages = [ hermes-agent hermes-tui ];
hermes-web = inputs.self.packages.${system}.web;
packages = [ hermes-agent hermes-tui hermes-web ];
in {
devShells.default = pkgs.mkShell {
inputsFrom = packages;