mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
15 lines
396 B
Nix
15 lines
396 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.monitors.primary.config.mode;
|
|
};
|
|
};
|
|
}
|