From 9dbd15317d64b7699093ebc5aeb8c34c66d1740c Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Thu, 24 Oct 2024 08:28:41 +0200 Subject: [PATCH] feat(shell): replace picocom with screen --- horsch.nix | 3 ++- picocom.nix | 5 ----- shell/screen.nix | 5 +++++ 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 picocom.nix create mode 100644 shell/screen.nix diff --git a/horsch.nix b/horsch.nix index 3bfa34e..c728999 100644 --- a/horsch.nix +++ b/horsch.nix @@ -18,9 +18,10 @@ ]; imports = [ - ./picocom.nix ./podman.nix + ./shell/screen.nix + ./horsch/ssh.nix ./horsch/zsh.nix ./horsch/github.nix diff --git a/picocom.nix b/picocom.nix deleted file mode 100644 index 3194059..0000000 --- a/picocom.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ pkgs, ... }: - -{ - home.packages = [ pkgs.picocom ]; -} diff --git a/shell/screen.nix b/shell/screen.nix new file mode 100644 index 0000000..f19cf95 --- /dev/null +++ b/shell/screen.nix @@ -0,0 +1,5 @@ +{ pkgs, ... }: + +{ + home.packages = [ pkgs.screen ]; +}