mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
Add grub
This commit is contained in:
parent
0cc9a3c8b6
commit
b5e7be0747
4 changed files with 42 additions and 25 deletions
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue