From 33726bf4c1f122b0e65367e5abfddbfb446fb363 Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Mon, 16 Jun 2025 01:05:21 +0200 Subject: [PATCH] Add configuration --- hosts/perso-desktop/configuration.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hosts/perso-desktop/configuration.nix b/hosts/perso-desktop/configuration.nix index cf94f95..f90b50f 100644 --- a/hosts/perso-desktop/configuration.nix +++ b/hosts/perso-desktop/configuration.nix @@ -61,5 +61,12 @@ extraPackages32 = with pkgs; [ driversi686Linux.amdvlk ]; }; - networking.interfaces.enp16s0.wakeOnLan.enable = true; + networking.interfaces.enp17s0.wakeOnLan.enable = true; + services.openssh = { + enable = true; + settings = { + PermitRootLogin = "no"; + PasswordAuthentication = false; + }; + }; }