11 lines
213 B
Nix
11 lines
213 B
Nix
{...}: let
|
|
onePassPath = "~/.1password/agent.sock";
|
|
in {
|
|
programs.ssh = {
|
|
enable = true;
|
|
enableDefaultConfig = false;
|
|
extraConfig = "IdentityAgent ${onePassPath}";
|
|
matchBlocks."*" = {};
|
|
};
|
|
}
|