Files

9 lines
160 B
Nix

{ config, ... }:
let
hostName = "frieren";
in
{
programs.ssh.matchBlocks."github.com".identityFile =
"${config.home.homeDirectory}/.ssh/${hostName}";
}