Files
dart/modules/home/ssh.nix
2026-02-16 15:22:05 -07:00

31 lines
541 B
Nix

{ ... }:
{
programs.ssh = {
enable = true;
enableDefaultConfig = false;
extraConfig = ''
IdentityAgent /Users/atridad/.bitwarden-ssh-agent.sock
'';
matchBlocks = {
"localhost" = {
userKnownHostsFile = "/dev/null";
};
"tux" = {
hostname = "tuxworld.usask.ca";
user = "atl175";
};
"haschel" = {
hostname = "haschel";
user = "root";
};
"lloyd" = {
hostname = "lloyd";
user = "truenas_admin";
};
};
};
}