NixOS and Home Manager config

tmp: tangled dev ssh

nel.pet e3ed60dc 83d67aff

verified
Changed files
+9 -1
modules
home
+9 -1
modules/home/ssh.nix
···
-
{ ... }: {
+
{ config, ... }: {
programs.ssh = {
enable = true;
addKeysToAgent = "yes";
+
matchBlocks = {
+
"nixos-shell" = {
+
hostname = "localhost";
+
port = 2222;
+
user = "git";
+
identityFile = "${config.home.homeDirectory}/.ssh/id_ed25519";
+
};
+
};
};
services.ssh-agent.enable = true;
}