9 lines
No EOL
260 B
Nix
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;
|
|
} |