home: add ssh
This commit is contained in:
parent
dc166488f0
commit
288677bdbd
2 changed files with 12 additions and 0 deletions
11
home/applications/ssh/default.nix
Normal file
11
home/applications/ssh/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{config, ...}: {
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
matchBlocks = let
|
||||
inherit (config.home) homeDirectory;
|
||||
in {
|
||||
"blacksteel".identityFile = "${homeDirectory}/.ssh/id_github_signing";
|
||||
"tyo0.ny4.dev".identityFile = "${homeDirectory}/.ssh/id_github_signing";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -42,6 +42,7 @@
|
|||
./applications/git
|
||||
./applications/gpg
|
||||
./applications/neovim
|
||||
./applications/ssh
|
||||
./applications/starship
|
||||
./applications/tealdeer
|
||||
./applications/tmux
|
||||
|
|
Loading…
Reference in a new issue