dotfiles/nix/hosts/hetznix/services/openssl.nix

11 lines
141 B
Nix
Raw Normal View History

2025-01-05 15:18:56 +00:00
{
services.openssh = {
enable = true;
settings = {
AllowUsers = [ "opdavies" ];
PermitRootLogin = "no";
};
};
}