flake/modules/nixos/core/boot.nix
2024-06-14 14:36:36 +00:00

15 lines
391 B
Nix

{ 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;
};
};
}