From 4c47b2d5d5c6f6f50cc9a4e2309f43f75de0b218 Mon Sep 17 00:00:00 2001 From: Lilly Date: Mon, 5 Jan 2026 19:53:19 +0000 Subject: [PATCH] Auto-commit: 2026-01-05 19:53:19 --- system/core.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/system/core.nix b/system/core.nix index bcc1b2b..10f2fa7 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.enable = true; # Bluetooth Support + }; nix = { settings = { download-buffer-size = 200000000;