mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-28 00:05:00 +08:00
15 lines
229 B
Nix
15 lines
229 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
|
|
# Note: More defined in juspay.nix
|
|
matchBlocks = {
|
|
immediacy = {
|
|
hostname = "65.109.84.215";
|
|
forwardAgent = true;
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|