mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-23 16:38:26 +02:00
6 lines
151 B
Nix
6 lines
151 B
Nix
{config, ...}: let
|
|
hostName = "fern";
|
|
in {
|
|
programs.ssh.matchBlocks."github.com".identityFile = "${config.home.homeDirectory}/.ssh/${hostName}";
|
|
}
|