mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
16 lines
325 B
Nix
16 lines
325 B
Nix
{ config, ... }:
|
|
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
enableDefaultConfig = false;
|
|
matchBlocks = {
|
|
"*" = { };
|
|
"github.com" = {
|
|
host = "github.com";
|
|
user = "git";
|
|
identitiesOnly = true;
|
|
identityFile = [ config.sops.secrets."github_ssh_key".path ];
|
|
};
|
|
};
|
|
};
|
|
}
|