This commit is contained in:
iFargle 2023-09-21 22:25:30 +09:00
parent 05a732d2e7
commit 7d756b36d9
2 changed files with 6 additions and 7 deletions

View file

@ -4,4 +4,10 @@
boot.tmp.cleanOnBoot = true; boot.tmp.cleanOnBoot = true;
boot.initrd.systemd.enable = true; boot.initrd.systemd.enable = true;
boot.kernelParams = ["quiet"]; boot.kernelParams = ["quiet"];
# Plymouth splash screen
boot.plymouth.enable = true;
# https://github.com/adi1090x/plymouth-themes
boot.plymouth.theme = "red_loader";
boot.plymouth.themePackages = [ pkgs.adi1090x-plymouth-themes ];
} }

View file

@ -6,15 +6,8 @@
boot.lanzaboote.enable = true; boot.lanzaboote.enable = true;
boot.lanzaboote.pkiBundle = "/etc/secureboot"; boot.lanzaboote.pkiBundle = "/etc/secureboot";
# Plymouth splash screen
boot.plymouth.enable = true;
# https://github.com/adi1090x/plymouth-themes
boot.plymouth.theme = "red_loader";
boot.plymouth.themePackages = [ pkgs.adi1090x-plymouth-themes ];
# Bootloader # Bootloader
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.tmp.cleanOnBoot = true; boot.tmp.cleanOnBoot = true;
boot.initrd.systemd.enable = true; boot.initrd.systemd.enable = true;
boot.kernelParams = ["quiet"];
} }