14 lines
323 B
Nix
14 lines
323 B
Nix
{ config, ... }:
|
|
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
matchBlocks =
|
|
let
|
|
inherit (config.home) homeDirectory;
|
|
in
|
|
{
|
|
"blacksteel".identityFile = "${homeDirectory}/.ssh/id_github_signing";
|
|
"tyo0.ny4.dev".identityFile = "${homeDirectory}/.ssh/id_github_signing";
|
|
};
|
|
};
|
|
}
|