bootconfig hinzugefügt

This commit is contained in:
fnord 2025-04-23 20:08:01 +02:00
parent 8a516e0bfe
commit 98ba4bfd17

7
boot.nix Normal file
View file

@ -0,0 +1,7 @@
{config, libs, pkgs, ....}:
{
boot.initrd.systemd.enable = true;
boot.plymouth.enable = true;
boot.kernelParams = ["quiet" "splash"];
boot.consoleLogLevel = 0;
}