bwa
This commit is contained in:
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