Add ssh config.

This commit is contained in:
Tom Alexander
2025-02-10 18:14:18 -05:00
parent 0bec3dbe63
commit 197b8fcced
2 changed files with 42 additions and 0 deletions

View File

@@ -20,4 +20,12 @@
];
};
};
home-manager.users.talexander =
{ pkgs, ... }:
{
home.file.".ssh/config" = {
source = ./files/ssh_config;
};
};
}