mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-11 12:30:23 +01:00
9 lines
157 B
Nix
9 lines
157 B
Nix
{ config, ... }:
|
|
let
|
|
hostName = "fern";
|
|
in
|
|
{
|
|
programs.ssh.matchBlocks."github.com".identityFile =
|
|
"${config.home.homeDirectory}/.ssh/${hostName}";
|
|
}
|