ssh, gpg fixes

This commit is contained in:
Till 2026-01-19 23:46:38 +01:00
parent 3c34e65b68
commit 55176fb9bc
4 changed files with 56 additions and 26 deletions

24
home/ssh.nix Normal file
View file

@ -0,0 +1,24 @@
{ 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";
};
};
};
}