CrOS/hosts/common/core/ssh.nix
TheWanderingCrow 2091fb1fdc work
2025-05-25 21:12:43 -04:00

19 lines
237 B
Nix

{
inputs,
config,
lib,
pkgs,
...
}: {
programs.ssh = {
startAgent = true;
};
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "no";
PasswordAuthentication = false;
};
};
}