Files
dendritic/modules/programs/onepassword.nix
T
John Lancaster a337ce6f2c kde updates
2026-06-09 09:06:21 -05:00

10 lines
265 B
Nix

{ self, inputs, ... }: {
flake.modules.homeManager.onepassword = { config, ... }: {
home.file.".config/1Password/ssh/agent.toml".text = ''
# https://developer.1password.com/docs/ssh/agent/config
[[ssh-keys]]
vault = "Private"
'';
};
}