feat(shell): replace picocom with screen

This commit is contained in:
Michael Mandl 2024-10-24 08:28:41 +02:00
parent af91086a14
commit 9dbd15317d
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2
3 changed files with 7 additions and 6 deletions

5
shell/screen.nix Normal file
View file

@ -0,0 +1,5 @@
{ pkgs, ... }:
{
home.packages = [ pkgs.screen ];
}