From 806fb7cb5e992bb2b6c4290c666223bc22d6ed89 Mon Sep 17 00:00:00 2001 From: git Date: Sun, 27 Oct 2024 12:48:59 +0100 Subject: [PATCH] hostmux: add updater --- pkgs/tools/misc/hostmux/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/tools/misc/hostmux/default.nix b/pkgs/tools/misc/hostmux/default.nix index 27e714a5e7f7..62be6e821306 100644 --- a/pkgs/tools/misc/hostmux/default.nix +++ b/pkgs/tools/misc/hostmux/default.nix @@ -4,6 +4,7 @@ , installShellFiles , openssh , tmux +, gitUpdater }: stdenv.mkDerivation (finalAttrs: { @@ -43,6 +44,8 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; + passthru.updateScript = gitUpdater { }; + meta = { description = "Small wrapper script for tmux to easily connect to a series of hosts via ssh and open a split pane for each of the hosts"; homepage = "https://github.com/hukl/hostmux";