This commit is contained in:
Bug
2025-05-02 10:10:05 -05:00
parent 3c99fa2a8d
commit c21d7821b7
9 changed files with 261 additions and 13 deletions

View File

@@ -1,8 +1,22 @@
{ ... }:
{
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
systemd.services = {
NetworkManager-wait-online.enable = false;
systemd-udev-settle.enable = false;
};
services.journald.extraConfig = "Storage=volatile";
boot = {
kernelModules = [ "ext4" "ahci" "nvme" ];
kernelParams = [ "elevator=deadline" "quiet" ];
loader = {
timeout = 0;
grub.splashImage = null;
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
};
}