dotfiles/nixos/msi/boot.nix
2024-06-14 18:04:21 +02:00

23 lines
397 B
Nix

{ pkgs, ... }:
{
boot = {
kernelPackages = pkgs.linuxPackages_latest;
initrd = {
verbose = false;
systemd.enable = true;
};
# Enable silent boot
consoleLogLevel = 3;
kernelParams = [
"quiet"
"splash"
"systemd.show_status=auto" # suppress successful messages
"rd.udev.log_level=3" # stop systemd from printing its version
];
plymouth.enable = true;
};
}