This commit is contained in:
muon 2024-06-14 14:36:36 +00:00
parent 0cc9a3c8b6
commit b5e7be0747
4 changed files with 42 additions and 25 deletions

View file

@ -1,4 +1,15 @@
{ pkgs, lib, ... }: {
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
{ pkgs, lib, config, ... }: {
# boot.loader.systemd-boot.enable = true;
# boot.plymouth.enable = true;
# boot.initrd.systemd.enable = true;
# boot.kernelParams = [ "quiet" ];
boot.loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
efiSupport = true;
device = "nodev";
gfxmodeEfi = config.mods.monitor.main.resolution;
};
};
}