Auto-commit: 2026-01-05 19:53:19

This commit is contained in:
2026-01-05 19:53:19 +00:00
parent 34f08c047e
commit 4c47b2d5d5

View File

@@ -3,6 +3,18 @@ let
cfg = config.my.cachyosKernel; cfg = config.my.cachyosKernel;
in 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 = { nix = {
settings = { settings = {
download-buffer-size = 200000000; download-buffer-size = 200000000;