mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-23 04:43:00 +09:00
15 lines
320 B
Nix
15 lines
320 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];
|
|
};
|
|
};
|
|
};
|
|
}
|