sisyphus/nixos/modules/utils/ssh/default.nix
2023-05-02 21:25:04 +02:00

8 lines
116 B
Nix

{ config, lib, pkgs, ... }:
{
services.openssh = {
enable = true;
passwordAuthentication = false;
};
}