From ee1f038f552cb0b4c8e0b19926fce0d718cc61b8 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Mon, 30 Jun 2025 23:31:34 -0500 Subject: [PATCH] vault config --- home.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/home.nix b/home.nix index f83d6b8..2722861 100644 --- a/home.nix +++ b/home.nix @@ -143,4 +143,11 @@ # https://developer.1password.com/docs/cli/shell-plugins plugins = with pkgs; [ gh ]; }; + home.file.".config/1Password/ssh/agent.toml" = lib.mkIf config._1password { + # https://developer.1password.com/docs/ssh/agent/config + text = '' + [[ssh-keys]] + vault = "Private" + ''; + }; }