mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-30 06:11:52 +02:00
19 lines
438 B
Nix
19 lines
438 B
Nix
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
Host github.com
|
|
Hostname github.com
|
|
# github is controlled by fern~
|
|
IdentityFile ~/.ssh/fern
|
|
# Specifies that ssh should only use the identity file explicitly configured above
|
|
# required to prevent sending default identity files first.
|
|
IdentitiesOnly yes
|
|
'';
|
|
};
|
|
|
|
modules.editors.emacs = {
|
|
enable = true;
|
|
};
|
|
}
|