mirror of
https://github.com/morten-olsen/nixos-config.git
synced 2026-02-08 00:36:27 +01:00
13 lines
217 B
Nix
13 lines
217 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
controlMaster = "auto";
|
|
controlPath = "~/controls-ssh-%r@%h:%p";
|
|
extraConfig = ''
|
|
IdentityAgent ~/.1password/agent.sock
|
|
'';
|
|
};
|
|
}
|