home: amneesh: add screen config

Signed-off-by: Amneesh Singh <amneesh@ti.com>
This commit is contained in:
Amneesh Singh
2025-10-17 11:53:28 +05:30
parent ec8d9fafdd
commit bf00621b02
3 changed files with 14 additions and 1 deletions

12
home/amneesh/screen.nix Normal file
View File

@@ -0,0 +1,12 @@
{ pkgs, ... }:
{
home = {
packages = [ pkgs.screen ];
file = {
".screenrc".text = ''
defscrollback 10000
'';
};
};
}