add 1password config agent.toml

This commit is contained in:
reeink 2024-03-08 23:05:55 +08:00
parent 55898254ec
commit 37288d5a60
No known key found for this signature in database
2 changed files with 33 additions and 0 deletions

View file

@ -1,6 +1,7 @@
README.md README.md
{{ if ne .chezmoi.os "windows" }} {{ if ne .chezmoi.os "windows" }}
AppData
Documents Documents
{{ end }} {{ end }}

View file

@ -0,0 +1,32 @@
# This is the 1Password SSH agent config file, which allows you to customize the
# behavior of the SSH agent running on this machine.
#
# You can use it to:
# * Enable keys from other vaults than the Private vault
# * Control the order in which keys are offered to SSH servers
#
# EXAMPLE
#
# By default, all keys in your Private vault(s) are enabled:
#
# [[ssh-keys]]
# vault = "Private"
#
# You can enable more keys by adding more `[[ssh-keys]]` entries.
# For example, to first enable item "My SSH Key" from "My Custom Vault":
#
# [[ssh-keys]]
# item = "My SSH Key"
# vault = "My Custom Vault"
#
# [[ssh-keys]]
# vault = "Private"
#
# You can test the result by running:
#
# ssh-add -l
#
# More examples can be found here:
# https://developer.1password.com/docs/ssh/agent/config
[[ssh-keys]]
vault = "Private"