17 lines
317 B
Nix
17 lines
317 B
Nix
|
{ inputs, config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.ssh = {
|
||
|
enable = true;
|
||
|
matchBlocks = [
|
||
|
{
|
||
|
host = "Mallorea";
|
||
|
hostname = "10.1";
|
||
|
port = 22;
|
||
|
user = "server";
|
||
|
forwardAgent = true;
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
}
|