diff options
author | sterni <sternenseemann@systemli.org> | 2024-04-18T13·15+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-04-28T15·19+0000 |
commit | 545eb0535702d2c8a66ff357972677a8765ade46 (patch) | |
tree | 2d2ab2fb97805ad87337af03e5cb4ef4a1e652c5 /ops | |
parent | d816b18fa6a4e866add3bc6efc88c730ecfaae53 (diff) |
refactor(3p): use josh from nixpkgs r/8023
The change we need has been released and propagated to nixos channels. Change-Id: Ib10a1d42d7ef6deaf5665a13b72ece345e83d7dc Reviewed-on: https://cl.tvl.fyi/c/depot/+/11457 Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
Diffstat (limited to 'ops')
-rw-r--r-- | ops/modules/josh.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/modules/josh.nix b/ops/modules/josh.nix index 4591ebf0f078..3c37d0fec338 100644 --- a/ops/modules/josh.nix +++ b/ops/modules/josh.nix @@ -26,7 +26,7 @@ in DynamicUser = true; StateDirectory = "josh"; Restart = "always"; - ExecStart = "${depot.third_party.josh}/bin/josh-proxy --no-background --local /var/lib/josh --port ${toString cfg.port} --remote https://cl.tvl.fyi/ --require-auth"; + ExecStart = "${pkgs.josh}/bin/josh-proxy --no-background --local /var/lib/josh --port ${toString cfg.port} --remote https://cl.tvl.fyi/ --require-auth"; }; }; }; |