mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-27 18:57:15 +08:00
14 lines
194 B
Nix
14 lines
194 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
|
|
# Note: More defined in juspay.nix
|
|
matchBlocks = {
|
|
pureintent = {
|
|
forwardAgent = true;
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|