flake/home/applications/ssh/default.nix

15 lines
323 B
Nix
Raw Normal View History

{ config, ... }:
{
2024-07-24 16:52:39 +00:00
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";
};
2024-07-24 16:52:39 +00:00
};
}