Files
nix-config/hosts/common/core/ssh.nix
2025-05-12 23:25:39 -03:00

12 lines
144 B
Nix

{
lib,
pkgs,
...
}:
{
programs.ssh = lib.optionalAttrs pkgs.stdenv.isLinux {
startAgent = true;
enableAskPassword = true;
};
}