From 20dd66e618c1cd111096253a44db25f5f86d604b Mon Sep 17 00:00:00 2001 From: Matthew Bessette Date: Sat, 4 Apr 2026 22:52:00 -0400 Subject: [PATCH] update --- hydrogen.darwin.nix | 1 + hydrogen.home.nix | 20 +++++++++++++++++++- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/hydrogen.darwin.nix b/hydrogen.darwin.nix index 147bab6..2319ce2 100644 --- a/hydrogen.darwin.nix +++ b/hydrogen.darwin.nix @@ -41,6 +41,7 @@ casks = [ "1password" "iterm2" + "moonlight" "obsidian" "signal" "spotify" diff --git a/hydrogen.home.nix b/hydrogen.home.nix index 72f58e3..77a5af5 100644 --- a/hydrogen.home.nix +++ b/hydrogen.home.nix @@ -56,7 +56,7 @@ ]; initContent = '' - export SSH_AUTH_SOCK=~/Library/Group\ Containers/2BU8OCWD5C.com.1password/t/agent.sock + export SSH_AUTH_SOCK=~/Library/Group\ Containers/2BUA8C4S2C.com.1password/t/agent.sock # Auto-allow direnv for directories with flake.nix auto_allow_direnv() { @@ -94,6 +94,24 @@ prefix=${config.home.homeDirectory}/.npm-global '' ; + home.file.".config/1Password/ssh/agent.toml".source = ./config.agent.toml; + + programs.ssh = { + enable = true; + matchBlocks = { + "thiccdata.io" = { + hostname = "192.168.1.45"; + user = "mbessette"; + port = 2222; + }; + "*" = { + extraOptions = { + "IdentityAgent" = "\"~/Library/Group\ Containers/2BUA8C4S2C.com.1password/t/agent.sock\""; + }; + }; + }; + }; + programs.git = { enable = true;