mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 16:17:46 +00:00
16 lines
413 B
Nix
16 lines
413 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 = {
|
|
timeout = 0;
|
|
efi.canTouchEfiVariables = true;
|
|
grub = {
|
|
enable = true;
|
|
efiSupport = true;
|
|
device = "nodev";
|
|
gfxmodeEfi = config.mods.monitors.primary.config.mode;
|
|
};
|
|
};
|
|
}
|