aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-02-26 12:00:34 -0600
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-02-26 12:00:34 -0600
commit8a66eb1b6b14027170a60bf2a66ddfa5984574ab (patch)
tree7f214b7933e6497d7e4d621515e2573ad693f711
parent890ec378a06e670ef86e290b9bd18e36bdcff06b (diff)
gotty -> ttyd, -W
-rw-r--r--modules/services/nixos/btopweb.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/services/nixos/btopweb.nix b/modules/services/nixos/btopweb.nix
index 1975c5d..dc6ef87 100644
--- a/modules/services/nixos/btopweb.nix
+++ b/modules/services/nixos/btopweb.nix
@@ -28,7 +28,7 @@ in {
User = "btopweb";
Type = "simple";
- ExecStart = "${pkgs.gotty}/bin/gotty --reconnect --port ${toString cfg.port} ${pkgs.btop}/bin/btop";
+ ExecStart = ''${pkgs.ttyd}/bin/ttyd -W -i ${cfg.listenAddr} -p ${toString cfg.port} ${pkgs.btop}/bin/btop'';
};
};
};