nixos-config/modules/home/all/ssh.nix
2024-11-18 13:58:56 -05:00

14 lines
194 B
Nix

{ pkgs, lib, ... }:
{
programs.ssh = {
enable = true;
# Note: More defined in juspay.nix
matchBlocks = {
pureintent = {
forwardAgent = true;
};
};
};
}