services.openssh.settings.Macs
NixOS option
Allowed MACs Defaults to a curated set of algorithms. Set enableRecommendedAlgorithms to false to use upstream’s defaults.
type: null or (list of string)Default
declared in: nixos/modules/services/networking/ssh/sshd.nixView source on NixOS/nixpkgs →''
if config.services.openssh.enableRecommendedAlgorithms then
[
"hmac-sha2-512-etm@openssh.com"
"hmac-sha2-256-etm@openssh.com"
"umac-128-etm@openssh.com"
]
else
null;
''