feat: replace systemd-boot with grub

This commit is contained in:
2025-11-16 18:19:05 +01:00
parent 481f912c8a
commit 2f23076dea

View File

@@ -10,9 +10,14 @@
# use flakes # use flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Use the systemd-boot EFI boot loader. # Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = false;
boot.loader.grub = {
enable = true;
device = "nodev";
efiSupport = true;
};
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.kernelParams = [ boot.kernelParams = [
"quiet" "quiet"