chore: fix deprecation warnings

This commit is contained in:
Nickolaj Jepsen 2025-12-12 04:41:03 +01:00
parent e03f3af01d
commit 595d2b23e0
7 changed files with 20 additions and 21 deletions

View file

@ -27,13 +27,14 @@ in {
home.file.".ssh/id_ed25519.pub".source = ../../secrets/hosts + ("/" + hostname) + "/id_ed25519.pub";
programs.ssh = {
enable = true;
forwardAgent = true;
serverAliveInterval = 60;
serverAliveCountMax = 10;
enableDefaultConfig = false;
matchBlocks =
{
"*" = {
identityFile = "${config.age.secrets.ssh-key.path}";
forwardAgent = true;
serverAliveInterval = 60;
serverAliveCountMax = 10;
};
homelab = {
hostname = "x.nickolaj.com";