mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-25 17:38:29 +02:00
11 lines
191 B
Nix
11 lines
191 B
Nix
{ config, ... }:
|
|
let
|
|
hostName = "frieren";
|
|
in
|
|
{
|
|
imports = [ ../../darwin ];
|
|
|
|
programs.ssh.matchBlocks."github.com".identityFile =
|
|
"${config.home.homeDirectory}/.ssh/${hostName}";
|
|
}
|