From b5468b25599a54f33d3ec8c10c2fef67b2318304 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Thu, 20 Mar 2025 16:35:01 +0000 Subject: [PATCH] Updated cofiguration --- modules/common.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/common.nix b/modules/common.nix index 2fc31f9..6dce439 100644 --- a/modules/common.nix +++ b/modules/common.nix @@ -4,7 +4,6 @@ # Bootloader boot.loader.grub = { enable = true; - version = 2; device = "nodev"; efiSupport = true; }; @@ -29,7 +28,9 @@ # Enable SSH services.openssh = { enable = true; - permitRootLogin = "no"; - passwordAuthentication = false; + settings = { + PermitRootLogin = "no"; + PasswordAuthentication = false; + }; }; }