From e110052eea93f3634b98219671e858f3e806b7c9 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Sat, 2 Aug 2025 12:35:38 +0200 Subject: [PATCH 1/2] chore: comment out bootloader as that's not required apparently?? --- hosts/hazel/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/hosts/hazel/default.nix b/hosts/hazel/default.nix index 03a0fad..ddf9849 100644 --- a/hosts/hazel/default.nix +++ b/hosts/hazel/default.nix @@ -39,10 +39,11 @@ ]; }; - boot = { - loader.grub = { - enable = true; - device = "/dev/sda"; - }; - }; + #boot = { + # loader.grub = { + # enable = true; + # device = "/dev/sda"; + # useOSProber = true; + # }; + #}; } From b4e6c45ca5c1d558820a3a5989f25ea28bc58e22 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Sat, 2 Aug 2025 12:39:09 +0200 Subject: [PATCH 2/2] feat: set `initialPassword` --- modules/core/user.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/core/user.nix b/modules/core/user.nix index 8370132..aa2c3ec 100644 --- a/modules/core/user.nix +++ b/modules/core/user.nix @@ -57,6 +57,7 @@ "wheel" ]; shell = pkgs.zsh; + initialPassword = "temporary-password"; }; nix.settings.allowed-users = [ "${username}" ]; }