From a5a2c6c87cf799d1c90da2a15f1c61aa940d873a Mon Sep 17 00:00:00 2001 From: Grigory Shipunov Date: Mon, 3 Oct 2022 13:06:00 +0200 Subject: [PATCH] add screen --- modules/basic-tools.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/basic-tools.nix b/modules/basic-tools.nix index 41ef860..7175e66 100644 --- a/modules/basic-tools.nix +++ b/modules/basic-tools.nix @@ -24,6 +24,7 @@ nnn man-pages wlsunset + screen ]; nix = { @@ -87,4 +88,14 @@ programs.iftop.enable = true; programs.mosh.enable = true; + + programs.screen.screenrc = '' + defscrollback 10000 + + startup_message off + + hardstatus on + hardstatus alwayslastline + hardstatus string "%w" + ''; }