From caeaf1f9c6b60fd2b408aae97487dd971f3c6f52 Mon Sep 17 00:00:00 2001 From: Pratham Patel Date: Mon, 8 Apr 2024 16:30:53 +0530 Subject: [PATCH] add pkg: openssh-server; move Darwin-related setup to its block --- .local/scripts/other-common-scripts/unix-setup.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.local/scripts/other-common-scripts/unix-setup.sh b/.local/scripts/other-common-scripts/unix-setup.sh index 74df8ff..7a8dd90 100644 --- a/.local/scripts/other-common-scripts/unix-setup.sh +++ b/.local/scripts/other-common-scripts/unix-setup.sh @@ -85,6 +85,7 @@ function install_pkgs_debian() { debhelper dpkg-dev git + openssh-server vim wget gcc- @@ -195,10 +196,8 @@ function chsh_to_bash() { } function common_setup() { install_dotfiles - install_pkgs_darwin home_manager_setup run_rustup - chsh_to_bash } @@ -233,7 +232,9 @@ if [[ "$(uname -s)" == 'Linux' ]]; then elif [[ "$(uname -s)" == 'Darwin' ]]; then function unix_setup() { darwin_init_setup + install_pkgs_darwin common_setup + chsh_to_bash } else echo 'Unsupported OS.'