przystosowanie konfiguracji pod siebie

This commit is contained in:
2025-09-18 16:01:58 +02:00
parent be171552d0
commit 0908e9eed6
165 changed files with 1799 additions and 11964 deletions

14
modules/home/ssh.nix Normal file
View File

@@ -0,0 +1,14 @@
_: {
programs.ssh = {
enable = true;
enableDefaultConfig = false;
matchBlocks = {
"hp-t640-homeserver" = {
hostname = "192.168.1.156";
user = "garand_plg";
port = 22;
identityFile = "~/.ssh/hp-t640-homeserver";
};
};
};
}