1
0
Fork 0

Use GRUB instead of systemd-boot

This commit is contained in:
Avery 2024-04-25 12:59:02 +02:00
parent fb1169ff8c
commit 58256d336d
Signed by: Avery
GPG key ID: B684FD451B692E04

View file

@ -6,7 +6,14 @@
initrd.availableKernelModules =
[ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
loader = {
systemd-boot = { enable = true; };
grub = {
enable = true;
device = "nodev";
efiSupport = true;
gfxmodeEfi = "2560x1440";
useOSProber = true;
};
systemd-boot.enable = false;
efi.canTouchEfiVariables = true;
};
};
@ -47,7 +54,10 @@
useDHCP = lib.mkDefault true;
};
time.timeZone = "Europe/Madrid";
time = {
hardwareClockInLocalTime = true;
timeZone = "Europe/Madrid";
};
i18n.defaultLocale = "es_ES.UTF-8";