mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 13:23:11 +01:00
46 lines
953 B
Nix
46 lines
953 B
Nix
{ config, ... }:
|
|
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
matchBlocks = {
|
|
"github.com" = {
|
|
identityFile = "~/.ssh/git";
|
|
};
|
|
"rfive.de" = {
|
|
user = "debian";
|
|
};
|
|
"kaki" = {
|
|
hostname = "kaki.ifsr.de";
|
|
user = "root";
|
|
};
|
|
"fsr" = {
|
|
hostname = "ifsr.de";
|
|
user = "rouven.seifert";
|
|
};
|
|
"quitte" = {
|
|
hostname = "quitte.ifsr.de";
|
|
user = "root";
|
|
};
|
|
"nuc" = {
|
|
hostname = "192.168.10.2";
|
|
user = "root";
|
|
};
|
|
"git@rfive.de" = {
|
|
match = "Host rfive.de User git";
|
|
identityFile = "~/.ssh/git";
|
|
};
|
|
"git@raspi" = {
|
|
match = "Host raspi User git";
|
|
identityFile = "~/.ssh/git";
|
|
};
|
|
"git@ifsr.de" = {
|
|
match = "Host raspi User git";
|
|
identityFile = "~/.ssh/git";
|
|
};
|
|
};
|
|
extraConfig = ''
|
|
IdentityFile ~/.ssh/id_ed25519
|
|
'';
|
|
};
|
|
}
|