diff --git a/machines/workstation/services.nix b/machines/workstation/services.nix index f36a741..3b16037 100644 --- a/machines/workstation/services.nix +++ b/machines/workstation/services.nix @@ -4,4 +4,12 @@ # Enable CUPS to print documents. services.printing.enable = true; + services.openssh = { + enable = true; + ports = [ 22 ]; + settings = { + PasswordAuthentication = true; + PermitRootLogin = "no"; + }; + }; }