Try modifying format to new standard

This commit is contained in:
RealStickman 2023-05-06 21:23:15 +02:00 committed by exu
parent ca4586f509
commit 447fddd06b

View File

@ -104,24 +104,24 @@ in {
ssh = { ssh = {
enable = true; enable = true;
extraOptionOverrides = { AddKeysToAgent = "yes"; }; extraOptionOverrides = { AddKeysToAgent = "yes"; };
matchBlocks = [ matchBlocks = {
{ "gitlab.com" = {
host = "gitlab.com"; host = "gitlab.com";
identityFile = [ "/home/${user}/.ssh/id_ed25519_git" ]; identityFile = [ "/home/${user}/.ssh/id_ed25519_git" ];
} };
{ "github.com" = {
host = "github.com"; host = "github.com";
identityFile = [ "/home/${user}/.ssh/id_ed25519_git" ]; identityFile = [ "/home/${user}/.ssh/id_ed25519_git" ];
} };
{ "gitea.exu.li" = {
host = "gitea.exu.li"; host = "gitea.exu.li";
identityFile = [ "/home/${user}/.ssh/id_ed25519_git" ]; identityFile = [ "/home/${user}/.ssh/id_ed25519_git" ];
} };
{ "aur.archlinux.org" = {
host = "aur.archlinux.org"; host = "aur.archlinux.org";
identityFile = [ "/home/${user}/.ssh/id_ed25519_git" ]; identityFile = [ "/home/${user}/.ssh/id_ed25519_git" ];
} };
]; };
}; };
}; };