mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 13:23:11 +01:00
80 lines
1.8 KiB
Nix
80 lines
1.8 KiB
Nix
{ ... }:
|
|
let
|
|
git = "/run/user/1000/secrets/ssh/git/private";
|
|
in
|
|
{
|
|
sops.secrets = {
|
|
"ssh/git/private" = { };
|
|
};
|
|
programs.ssh = rec {
|
|
enable = true;
|
|
compression = true;
|
|
matchBlocks = {
|
|
"artemis-git.inf.tu-dresden.de" = {
|
|
identityFile = git;
|
|
};
|
|
"se-gitlab.inf.tu-dresden.de" = {
|
|
identityFile = git;
|
|
};
|
|
"github.com" = {
|
|
identityFile = git;
|
|
};
|
|
"rfive.de" = {
|
|
hostname = "falkenstein.vpn.rfive.de";
|
|
user = "root";
|
|
port = 2222;
|
|
extraOptions = {
|
|
VerifyHostKeyDNS = "ask";
|
|
};
|
|
};
|
|
falkenstein-1 = matchBlocks."rfive.de";
|
|
"durian" = {
|
|
hostname = "manual.ifsr.de";
|
|
user = "root";
|
|
};
|
|
"kaki" = {
|
|
hostname = "kaki.ifsr.de";
|
|
user = "root";
|
|
};
|
|
"ifsr" = {
|
|
hostname = "ifsr.de";
|
|
user = "rouven.seifert";
|
|
};
|
|
"fsr" = matchBlocks."ifsr";
|
|
"quitte" = {
|
|
hostname = "quitte.ifsr.de";
|
|
user = "root";
|
|
extraOptions = {
|
|
RequestTTY = "yes";
|
|
RemoteCommand = "zsh -i";
|
|
};
|
|
};
|
|
"tomate" = {
|
|
hostname = "tomate.ifsr.de";
|
|
user = "root";
|
|
};
|
|
"nuc" = {
|
|
hostname = "192.168.10.2";
|
|
user = "root";
|
|
};
|
|
"git@raspi" = {
|
|
match = "Host raspi User git";
|
|
identityFile = git;
|
|
};
|
|
"git@ifsr.de" = {
|
|
match = "Host ifsr.de User git";
|
|
identityFile = git;
|
|
};
|
|
"git@staging.ifsr.de" = {
|
|
match = "Host staging.ifsr.de User git";
|
|
identityFile = git;
|
|
};
|
|
};
|
|
extraConfig = ''
|
|
PKCS11Provider /run/current-system/sw/lib/libtpm2_pkcs11.so
|
|
IdentityFile ~/.ssh/id_ed25519
|
|
VisualHostKey = yes
|
|
'';
|
|
};
|
|
}
|