diff options
Diffstat (limited to 'home-config')
-rw-r--r-- | home-config/home-configuration.scm | 2 | ||||
-rw-r--r-- | home-config/ssh/config | 4 | ||||
-rw-r--r-- | home-config/zsh/zprofile | 4 |
3 files changed, 8 insertions, 2 deletions
diff --git a/home-config/home-configuration.scm b/home-config/home-configuration.scm index 2aac656..701e377 100644 --- a/home-config/home-configuration.scm +++ b/home-config/home-configuration.scm @@ -21,6 +21,7 @@ (home-packages vim) (home-packages gnome-xyz) (home-packages shells) + (home-packages certs) (home-packages audio)) @@ -88,6 +89,7 @@ firefox-wayland-new lavanda-gtk-theme zsh-autosuggestions + freya-ca-certs vim-plug))) ;; Below is the list of Home services. To search for available diff --git a/home-config/ssh/config b/home-config/ssh/config index 65fad34..9bd4669 100644 --- a/home-config/ssh/config +++ b/home-config/ssh/config @@ -26,6 +26,6 @@ Host github.com User tam2214 IdentityFile /home/tylerm/.ssh/id_rit -Host * - KexAlgorithms -sntrup761x25519-sha512@openssh.com +#Host * +# KexAlgorithms -sntrup761x25519-sha512@openssh.com diff --git a/home-config/zsh/zprofile b/home-config/zsh/zprofile index 170786c..050131a 100644 --- a/home-config/zsh/zprofile +++ b/home-config/zsh/zprofile @@ -48,6 +48,10 @@ export PATH=$PATH:$LOCAL_PROFILE/bin export CC=$(which gcc) export LD=$(which gcc) +# Setup certs +export SSL_CERT_FILE=/run/current-system/profile/etc/ssl/certs/ca-certificates.crt +export SSL_CERT_DIR=/run/current-system/profile/etc/ssl/certs + # start sway only once and on the primary tty if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then # dbus-run-session Hyprland &> .log/hyprland |