From e912e960e694fd9d903a62ac32a1664ce1ce17da Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Wed, 18 Jan 2023 08:34:11 +0100 Subject: [PATCH] Enable the boot splash screen on X86 devices --- modules/common-x86/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/common-x86/default.nix b/modules/common-x86/default.nix index 8e93889..5de9aca 100644 --- a/modules/common-x86/default.nix +++ b/modules/common-x86/default.nix @@ -4,6 +4,8 @@ (import "${custom.inputs.self}/modules/common" { inherit custom; }) ]; + # Enable boot splash screen + boot.plymouth.enable = true; # Use the systemd-boot EFI boot loader. boot.loader = { systemd-boot.enable = true;