diff --git a/modules/home/all/ssh.nix b/modules/home/all/ssh.nix index daa487e..1cfc923 100644 --- a/modules/home/all/ssh.nix +++ b/modules/home/all/ssh.nix @@ -3,10 +3,6 @@ programs.ssh = { enable = true; - includes = [ - "~/.orbstack/ssh/config" # https://docs.orbstack.dev/machines/ssh - ]; - # Note: More defined in juspay.nix matchBlocks = { "*" = { diff --git a/modules/home/all/zsh.nix b/modules/home/all/zsh.nix index 985efdf..d94e594 100644 --- a/modules/home/all/zsh.nix +++ b/modules/home/all/zsh.nix @@ -19,11 +19,5 @@ file = "share/zsh-vi-mode/zsh-vi-mode.plugin.zsh"; } */ ]; - - envExtra = lib.mkIf pkgs.stdenv.isDarwin '' - # Because, adding it in .ssh/config is not enough. - # cf. https://developer.1password.com/docs/ssh/get-started#step-4-configure-your-ssh-or-git-client - export SSH_AUTH_SOCK=~/Library/Group\ Containers/2BUA8C4S2C.com.1password/t/agent.sock - ''; }; }