This commit is contained in:
Morten Olsen
2023-09-16 22:59:04 +02:00
parent 33f79566b7
commit a7bfa09045
14 changed files with 61 additions and 67 deletions

View File

@@ -1,10 +1,12 @@
{ config, pkgs, ... }:
{
home.file = {
".ssh" = {
source = ./files;
recursive = true;
};
programs.ssh = {
enable = true;
controlMaster = "auto";
controlPath = "~/controls-ssh-%r@%h:%p";
extraConfig = ''
IdentityAgent ~/.1password/agent.sock
'';
};
}