12 lines
161 B
Nix
12 lines
161 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
Host *
|
|
IdentityAgent ~/.1password/agent.sock
|
|
'';
|
|
};
|
|
}
|