From 1feced56b18626830ce15865719094efdbd3f231 Mon Sep 17 00:00:00 2001 From: oqyude Date: Thu, 15 Jan 2026 20:54:28 +0300 Subject: [PATCH] 123 --- configurations/mini-laptop.nix | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/configurations/mini-laptop.nix b/configurations/mini-laptop.nix index 50ae96c..85c6480 100644 --- a/configurations/mini-laptop.nix +++ b/configurations/mini-laptop.nix @@ -69,11 +69,11 @@ let }; services = { - xserver = { - videoDrivers = [ - "nomodeset" - ]; - }; + # xserver = { + # videoDrivers = [ + # "nomodeset" + # ]; + # }; # syncthing = { # enable = true; # systemService = true; @@ -107,6 +107,21 @@ let # }; thermald.enable = true; earlyoom.enable = true; + openssh = { + enable = true; + allowSFTP = true; + hostKeys = [ + { + path = "/etc/ssh/id_ed25519"; + type = "ed25519"; + } + ]; + settings = { + PasswordAuthentication = false; + PermitRootLogin = "yes"; + UsePAM = true; + }; + }; }; # security = { # rtkit.enable = true;