bwa
This commit is contained in:
@@ -12,6 +12,7 @@
|
|||||||
modules.tmux
|
modules.tmux
|
||||||
<modules/git/doloro>
|
<modules/git/doloro>
|
||||||
modules.hyfetch
|
modules.hyfetch
|
||||||
|
modules.ssh
|
||||||
];
|
];
|
||||||
homeManager =
|
homeManager =
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|||||||
24
config/modules/ssh.nix
Normal file
24
config/modules/ssh.nix
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
{ den, modules, ... }:
|
||||||
|
{
|
||||||
|
modules.ssh = {
|
||||||
|
homeManager =
|
||||||
|
{ home, ... }:
|
||||||
|
{
|
||||||
|
programs = {
|
||||||
|
ssh = {
|
||||||
|
enable = true;
|
||||||
|
enableDefaultConfig = false;
|
||||||
|
matchBlocks = {
|
||||||
|
"*" = {
|
||||||
|
addKeysToAgent = "yes";
|
||||||
|
identityFile = [
|
||||||
|
"~/.ssh/id_ed25519"
|
||||||
|
"~/.ssh/id_gitea_scug"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user