Fsight : Enable grub.

This commit is contained in:
Dmitry Voronin 2024-02-07 21:25:58 +03:00
parent d87cf56675
commit 87d7db0fbd

View file

@ -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/";