This commit is contained in:
2026-02-22 15:58:34 +00:00
parent 93f81a1f7f
commit 6af15d5a00
2 changed files with 25 additions and 0 deletions

24
config/modules/ssh.nix Normal file
View File

@@ -0,0 +1,24 @@
{ den, modules, ... }:
{
modules.ssh = {
homeManager =
{ home, ... }:
{
programs = {
ssh = {
enable = true;
enableDefaultConfig = false;
matchBlocks = {
"*" = {
addKeysToAgent = "yes";
identityFile = [
"~/.ssh/id_ed25519"
"~/.ssh/id_gitea_scug"
];
};
};
};
};
};
};
}