NixOS and Home Manager config

tmp: tangled dev ssh

nel.pet e3ed60dc 83d67aff

verified
+9 -1
+9 -1
modules/home/ssh.nix
··· 1 - { ... }: { 1 + { config, ... }: { 2 2 programs.ssh = { 3 3 enable = true; 4 4 addKeysToAgent = "yes"; 5 + matchBlocks = { 6 + "nixos-shell" = { 7 + hostname = "localhost"; 8 + port = 2222; 9 + user = "git"; 10 + identityFile = "${config.home.homeDirectory}/.ssh/id_ed25519"; 11 + }; 12 + }; 5 13 }; 6 14 services.ssh-agent.enable = true; 7 15 }