niksos/hosts/niks/ssh/default.nix

13 lines
179 B
Nix
Raw Normal View History

2023-07-20 13:33:32 +02:00
{
config,
pkgs,
...
}: {
2023-07-20 13:41:31 +02:00
imports = [ ./ssh-agent.nix ];
2023-07-20 13:33:32 +02:00
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
};
}