From 7050a8312595809a16eda826784760a551dff8dd Mon Sep 17 00:00:00 2001 From: chn Date: Sun, 23 Feb 2025 14:50:36 +0800 Subject: [PATCH] modules.system: plymouth use simpledrm on efi boot --- modules/system/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/system/default.nix b/modules/system/default.nix index 1a0db816..25482170 100644 --- a/modules/system/default.nix +++ b/modules/system/default.nix @@ -22,6 +22,9 @@ inputs: theme = "mac-style"; themePackages = [(inputs.pkgs.callPackage inputs.topInputs.mac-style {})]; }; + kernelParams = inputs.lib.mkIf + (builtins.elem inputs.config.nixos.system.grub.installDevice [ "efi" "efiRemovable" ]) + [ "plymouth.use-simpledrm" ]; }; hardware = { enableAllFirmware = true; bluetooth.enable = true; sensor.iio.enable = true; }; environment =