11 lines
167 B
Nix
11 lines
167 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
boot.initrd.systemd.enable = true;
|
|
boot.plymouth = {
|
|
enable = true;
|
|
};
|
|
|
|
boot.kernelParams = [ "quiet" "splash" "loglevel=3" ];
|
|
}
|