diff --git a/nixos/common/modules/bootloader.nix b/nixos/common/modules/bootloader.nix index 3ef99ca4..ac31b1cb 100644 --- a/nixos/common/modules/bootloader.nix +++ b/nixos/common/modules/bootloader.nix @@ -4,4 +4,10 @@ boot.tmp.cleanOnBoot = true; boot.initrd.systemd.enable = true; boot.kernelParams = ["quiet"]; + + # Plymouth splash screen + boot.plymouth.enable = true; + # https://github.com/adi1090x/plymouth-themes + boot.plymouth.theme = "red_loader"; + boot.plymouth.themePackages = [ pkgs.adi1090x-plymouth-themes ]; } \ No newline at end of file diff --git a/nixos/common/modules/secureboot.nix b/nixos/common/modules/secureboot.nix index 70582248..97db58a6 100644 --- a/nixos/common/modules/secureboot.nix +++ b/nixos/common/modules/secureboot.nix @@ -6,15 +6,8 @@ boot.lanzaboote.enable = true; boot.lanzaboote.pkiBundle = "/etc/secureboot"; - # Plymouth splash screen - boot.plymouth.enable = true; - # https://github.com/adi1090x/plymouth-themes - boot.plymouth.theme = "red_loader"; - boot.plymouth.themePackages = [ pkgs.adi1090x-plymouth-themes ]; - # Bootloader boot.loader.efi.canTouchEfiVariables = true; boot.tmp.cleanOnBoot = true; boot.initrd.systemd.enable = true; - boot.kernelParams = ["quiet"]; } \ No newline at end of file