Files
nix-config/home/shahab/common/optional/ssh.nix
2025-02-16 06:35:32 +00:00

9 lines
154 B
Nix

{...}: let
onePassPath = "~/.1password/agent.sock";
in {
programs.ssh = {
enable = true;
extraConfig = "IdentityAgent ${onePassPath}";
};
}