my nix dotfiles
at 14404dcea7f0a7e09e0f4fa034a2bc03c8123739 21 lines 326 B view raw
1{ config 2, pkgs 3, ... 4}: 5 6{ 7 programs.ssh = { 8 enable = true; 9 matchBlocks = { 10 "*" = { 11 serverAliveInterval = 180; 12 serverAliveCountMax = 3; 13 identityFile = [ "~/.ssh/id_ed25519" ]; 14 }; 15 "github.com" = { 16 user = "git"; 17 hostname = "github.com"; 18 }; 19 }; 20 }; 21}