server done

This commit is contained in:
Bryan Ramos 2026-03-13 09:46:41 -04:00
parent 779fb7e95e
commit e011aa48d7
3 changed files with 17 additions and 0 deletions

View file

@ -11,6 +11,21 @@
programs.home-manager.enable = true;
programs.ssh = {
enable = true;
enableDefaultConfig = false;
matchBlocks = {
"*" = {
serverAliveInterval = 60;
serverAliveCountMax = 3;
};
"server" = {
hostname = "192.168.0.154";
user = "bryan";
};
};
};
home.stateVersion = "23.11";
home.username = "${config.user.name}";