diff --git a/system/core.nix b/system/core.nix index bcc1b2b..afad0c5 100644 --- a/system/core.nix +++ b/system/core.nix @@ -3,6 +3,18 @@ let cfg = config.my.cachyosKernel; in { + services = { + openssh = { + enable = true; # Enable SSH + settings = { + PermitRootLogin = "no"; # Prevent root from SSH login + PasswordAuthentication = true; #Users can SSH using kb and password + KbdInteractiveAuthentication = true; + }; + ports = [22]; + }; + blueman.enab + }; nix = { settings = { download-buffer-size = 200000000;