From 8f0ab5be4060e3c54055a64bedc394cb807a5db8 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Mon, 8 Jul 2024 19:19:56 +0100 Subject: [PATCH] enable tail -F --- examples/l2tp.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/l2tp.nix b/examples/l2tp.nix index c01ca93..0bb65ec 100644 --- a/examples/l2tp.nix +++ b/examples/l2tp.nix @@ -138,4 +138,9 @@ in rec { passwd = lib.mkForce secrets.root.passwd; openssh.authorizedKeys.keys = secrets.root.keys; }; + + programs.busybox.options = { + FEATURE_FANCY_TAIL = "y"; + }; + }