2023-12-11 13:34:14 +01:00
|
|
|
{ lib, ... }:
|
|
|
|
{
|
|
|
|
programs.ssh.matchBlocks = {
|
2023-12-13 14:02:22 +01:00
|
|
|
"ntnu" = {
|
|
|
|
user = "oysteikt";
|
|
|
|
hostname = "login.stud.ntnu.no";
|
2024-06-08 12:46:27 +02:00
|
|
|
proxyJump = "pvv";
|
2023-12-13 14:02:22 +01:00
|
|
|
};
|
2024-06-25 20:13:30 +02:00
|
|
|
"github" = {
|
|
|
|
user = "git";
|
|
|
|
hostname = "github.com";
|
2024-07-08 15:32:00 +02:00
|
|
|
identityFile = [ "~/.ssh/id_ed25519" ];
|
|
|
|
};
|
|
|
|
"github-nordicsemi" = {
|
|
|
|
user = "git";
|
|
|
|
hostname = "github.com";
|
|
|
|
identityFile = [ "~/.ssh/id_ed25519_nordicsemi" ];
|
|
|
|
};
|
|
|
|
"bitbucket-nordicsemi" = {
|
|
|
|
user = "git";
|
|
|
|
hostname = "bitbucket.nordicsemi.no";
|
|
|
|
port = 7999;
|
|
|
|
identityFile = [ "~/.ssh/id_ed25519_nordicsemi" ];
|
2024-06-25 20:13:30 +02:00
|
|
|
};
|
2023-12-13 14:02:22 +01:00
|
|
|
"gitlab.stud.idi.ntnu.no" = {
|
|
|
|
user = "git";
|
|
|
|
proxyJump = "pvv";
|
|
|
|
};
|
2023-12-11 13:34:14 +01:00
|
|
|
"pascal wack" = {
|
|
|
|
user = "h7x4";
|
|
|
|
hostname = "wiki.wackattack.eu";
|
|
|
|
port = 1337;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|