Use GRUB instead of systemd-boot
This commit is contained in:
parent
fb1169ff8c
commit
58256d336d
1 changed files with 12 additions and 2 deletions
|
@ -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";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue