omniflake/home/ssh.nix
2026-01-19 23:46:38 +01:00

24 lines
431 B
Nix

{ config, ... }:
{
programs.ssh = {
enable = true;
matchBlocks = {
gu = {
hostname = "login.server.uni-frankfurt.de";
user = "tstraube";
identityFile = "${config.home.homeDirectory}/.ssh/tstraube";
};
geocom = {
hostname = "geocom.uni-frankfurt.de";
user = "till";
identityFile = "${config.home.homeDirectory}/.ssh/tstraube";
};
};
};
}