From 98ba4bfd1781ad0b2079ad607d65688e5a7831e9 Mon Sep 17 00:00:00 2001 From: fnord Date: Wed, 23 Apr 2025 20:08:01 +0200 Subject: [PATCH] =?UTF-8?q?bootconfig=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- boot.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 boot.nix diff --git a/boot.nix b/boot.nix new file mode 100644 index 0000000..e60236b --- /dev/null +++ b/boot.nix @@ -0,0 +1,7 @@ + {config, libs, pkgs, ....}: + { + boot.initrd.systemd.enable = true; + boot.plymouth.enable = true; + boot.kernelParams = ["quiet" "splash"]; + boot.consoleLogLevel = 0; + } \ No newline at end of file