ChCh-Public-PCs-NIXOS-Config/boot.nix
2025-04-23 20:14:07 +02:00

9 lines
No EOL
260 B
Nix

{config, libs, pkgs, ...}:
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.initrd.systemd.enable = true;
boot.plymouth.enable = true;
boot.kernelParams = ["quiet" "splash"];
boot.consoleLogLevel = 0;
}