Add gpg and ssh settings (home-manager)

This commit is contained in:
Marko Korhonen 2024-10-05 16:17:02 +03:00
parent 06e6ff5e66
commit e35cd83598
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890
4 changed files with 73 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ ... }:
{
programs.ssh = {
enable = true;
matchBlocks = {
moria = {
hostname = "korhonen.cc";
user = "balrog";
port = 221;
};
forgejo = {
hostname = "git.korhonen.cc";
user = "git";
port = 2882;
};
};
};
}