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 =