Files
Olympus/modules/features/openssh.nix
2026-04-23 09:48:55 -05:00

19 lines
399 B
Nix

{ ... }: {
flake.nixosModules.openssh = { config, lib, ... }: {
config = {
services.openssh = {
enable = true;
openFirewall = lib.mkDefault true;
settings = {
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
};
};
};
};
}