feat(shell): replace picocom with screen

main
mandlm 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

View File

@ -18,9 +18,10 @@
];
imports = [
./picocom.nix
./podman.nix
./shell/screen.nix
./horsch/ssh.nix
./horsch/zsh.nix
./horsch/github.nix

View File

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

5
shell/screen.nix Normal file
View File

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