mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-23 04:43:00 +09:00
22 lines
540 B
Nix
22 lines
540 B
Nix
{config, ...}: {
|
|
programs.ssh = {
|
|
enable = true;
|
|
enableDefaultConfig = false;
|
|
matchBlocks = {
|
|
"*" = {};
|
|
"Github" = {
|
|
hostname = "github.com";
|
|
user = "git";
|
|
identitiesOnly = true;
|
|
identityFile = [config.sops.secrets."github_ssh_key".path];
|
|
};
|
|
"Valkyrie-Ubuntu_Server" = {
|
|
hostname = "192.168.64.2";
|
|
user = "poby";
|
|
port = 22;
|
|
identitiesOnly = true;
|
|
identityFile = [config.sops.secrets."github_ssh_key".path];
|
|
};
|
|
};
|
|
};
|
|
}
|