[SSH] Enable

This commit is contained in:
Tibo De Peuter 2023-09-22 13:08:57 +02:00 committed by Tibo De Peuter
parent 25f78907ea
commit 5f8b9ac136

View file

@ -1,6 +1,11 @@
{ config, lib, pkgs, ... }:
{
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
};
home-manager.users.tdpeuter = {
programs.ssh = {
enable = true;