Files
nix-config/home/hosts/darwin/darwin-fern.nix
T

11 lines
188 B
Nix

{ config, ... }:
let
hostName = "fern";
in
{
imports = [ ../../darwin ];
programs.ssh.matchBlocks."github.com".identityFile =
"${config.home.homeDirectory}/.ssh/${hostName}";
}