{ userConfig, ... }: { services.ssh-agent.enable = true; programs.ssh = { enableDefaultConfig = false; enable = true; matchBlocks = { "dmowski" = { hostname = "192.168.0.30"; user = userConfig.username; port = 22; identityFile = "~/.ssh/dmowski"; }; "aur.archlinux.org" = { user = userConfig.username; identityFile = "~/.ssh/aur"; }; "github.com" = { hostname = "github.com"; user = "git"; identityFile = "~/.ssh/github"; }; "*" = { addKeysToAgent = "yes"; setEnv = { TERM = "xterm-256color"; }; }; }; }; }