mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-22 08:04:20 +01:00
519d7b3841
Signed-off-by: Magic_RB <magic_rb@redalder.org>
27 lines
695 B
Nix
27 lines
695 B
Nix
{ config, ... }:
|
|
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
|
|
controlMaster = "auto";
|
|
controlPath = "~/.ssh/controlmasters/%r@%h:%p";
|
|
controlPersist = "300s";
|
|
serverAliveInterval = 30;
|
|
matchBlocks = {
|
|
"Host *redalder.org 10.64.1.* 10.64.0.*".extraOptions = {
|
|
ExitOnForwardFailure = "yes";
|
|
SendEnv = "INSIDE_EMACS";
|
|
RemoteForward = "/home/main/.ssh/emacs-server /run/user/1000/emacs/server";
|
|
};
|
|
};
|
|
};
|
|
|
|
home.activation."ssh-controlmasters" = config.lib.dag.entryAfter ["writeBoundary"] ''
|
|
mkdir -p ~/.ssh/controlmasters
|
|
'';
|
|
|
|
home.file.".profile".text = ''
|
|
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
|
|
'';
|
|
}
|