sisyphus/nixos/modules/utils/ssh/default.nix

9 lines
116 B
Nix
Raw Normal View History

2023-04-11 18:00:21 +02:00
{ config, lib, pkgs, ... }:
{
services.openssh = {
enable = true;
passwordAuthentication = false;
};
}