mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-19 07:54:28 +01:00
refactor: Use hyphen(`-`) for variable names & folder names(except Python), replace all unserscore(`_`) with hyphen(`-`).
18 lines
450 B
Nix
18 lines
450 B
Nix
_: {
|
|
programs.ssh = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
Host github.com
|
|
Hostname github.com
|
|
# github is controlled by harmonica~
|
|
IdentityFile ~/.ssh/harmonica
|
|
# 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;
|
|
};
|
|
}
|