update trollshell to hyperhive integration branch

This commit is contained in:
müde 2026-09-10 23:20:14 +02:00
commit f56e38c1f7
3 changed files with 14 additions and 8 deletions

15
flake.lock generated
View file

@ -373,11 +373,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1788799576, "lastModified": 1789071588,
"narHash": "sha256-Yd91HQpDj3C18xKRPjQyVseFrAH7+VT+itdxTpmNxIQ=", "narHash": "sha256-wpeAnGUy0xzkKwjG8xhS6pkuKKxsbFaKZxX3dJyoy1I=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "a8fb08a7e8f7a368409dc295912aa1ace66d7243", "rev": "bf544369374eeb529d2e9049af24d569e4ae4a2d",
"revCount": 4284, "revCount": 4392,
"type": "git", "type": "git",
"url": "https://forge.darkest.space/hyperhive/hyperhive.git" "url": "https://forge.darkest.space/hyperhive/hyperhive.git"
}, },
@ -1019,15 +1019,16 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1788724375, "lastModified": 1789021019,
"narHash": "sha256-0qaEpNxN1dwS5OD1eB5/QzLYka2AY2tTz36G6KXhq7k=", "narHash": "sha256-yaOk8fAX+oapXNR2JapK7gHw2yegqqfi4YDXw1c4dz0=",
"owner": "vibec0re", "owner": "vibec0re",
"repo": "trollshell", "repo": "trollshell",
"rev": "1be5cea9ed27b5844dfaa9492de1fd816d3ac732", "rev": "72c287f0f37cb4b391627d5f60281863ec4c7ead",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "vibec0re", "owner": "vibec0re",
"ref": "feat/947-plugin-agents-p1",
"repo": "trollshell", "repo": "trollshell",
"type": "github" "type": "github"
} }

View file

@ -82,7 +82,7 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
trollshell = { trollshell = {
url = "github:vibec0re/trollshell"; url = "github:vibec0re/trollshell/feat/947-plugin-agents-p1";
inputs = { inputs = {
nixpkgs.follows = "nixpkgs"; nixpkgs.follows = "nixpkgs";
treefmt-nix.follows = "treefmt-nix"; treefmt-nix.follows = "treefmt-nix";

View file

@ -49,6 +49,11 @@ in
enable = true; enable = true;
package = trollshellPkgs.hytte-plugin-weather; package = trollshellPkgs.hytte-plugin-weather;
}; };
agents = {
enable = true;
package = trollshellPkgs.hytte-plugin-agents;
env.RUST_LOG = "hytte_plugin_agents=debug"; # every host.sock request/response line
};
}; };
}; };