tahani: rename let bindings to himalaya/opencode

This commit is contained in:
2026-03-02 14:44:25 +00:00
parent e67b84aa99
commit 68db6f15b8

View File

@@ -6,8 +6,8 @@
hostname, hostname,
... ...
}: let }: let
himalayaPackage = config.home-manager.users.${user}.programs.himalaya.package; himalaya = config.home-manager.users.${user}.programs.himalaya.package;
opencodePackage = inputs.llm-agents.packages.${pkgs.stdenv.hostPlatform.system}.opencode; opencode = inputs.llm-agents.packages.${pkgs.stdenv.hostPlatform.system}.opencode;
in { in {
imports = [ imports = [
./adguardhome.nix ./adguardhome.nix
@@ -63,8 +63,8 @@ in {
}; };
Service = { Service = {
Type = "oneshot"; Type = "oneshot";
ExecStart = "${opencodePackage}/bin/opencode run --command inbox-triage"; ExecStart = "${opencode}/bin/opencode run --command inbox-triage";
Environment = "PATH=${himalayaPackage}/bin:${opencodePackage}/bin"; Environment = "PATH=${himalaya}/bin:${opencode}/bin";
}; };
}; };