Files
nix-config/hosts/common/core/ssh.nix
2025-07-13 15:44:20 -03:00

11 lines
146 B
Nix

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