sisyphus/nixos/modules/utils/ssh/default.nix
2023-11-19 15:37:51 +01:00

8 lines
116 B
Nix

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