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 ]; +}