From 87d7db0fbda072a4270ae69ffa2fa85c179ab9f5 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Wed, 7 Feb 2024 21:25:58 +0300 Subject: [PATCH] Fsight : Enable grub. --- .config/linux/system/host/fsight/Configuration.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.config/linux/system/host/fsight/Configuration.nix b/.config/linux/system/host/fsight/Configuration.nix index 048afcc..f6be877 100644 --- a/.config/linux/system/host/fsight/Configuration.nix +++ b/.config/linux/system/host/fsight/Configuration.nix @@ -5,6 +5,13 @@ ./HardwareConfiguration.nix ]; + # Grub. + boot.loader.systemd-boot.enable = lib.mkForce false; + boot.loader.efi.canTouchEfiVariables = lib.mkForce false; + boot.loader.grub.enable = true; + boot.loader.grub.device = "/dev/sda"; + boot.loader.grub.useOSProber = true; + # Root password. users.users.root.hashedPassword = lib.mkForce "$y$j9T$d4HfwutZr.eNHuLJYRuro/$7swZfgCNS6jEXHFCxsW5um/68jX9BRiiZD1BYcm/gD/";