diff --git a/nixos/common/modules/secureboot.nix b/nixos/common/modules/secureboot.nix index ea404570..1f0d16a8 100644 --- a/nixos/common/modules/secureboot.nix +++ b/nixos/common/modules/secureboot.nix @@ -1,4 +1,10 @@ { lib, config, pkgs, ...}: { 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 ]; } \ No newline at end of file diff --git a/nixos/default.nix b/nixos/default.nix index 2fa6d8d4..8cbc8554 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -27,12 +27,6 @@ # Bootloader boot.loader.efi.canTouchEfiVariables = true; boot.tmp.cleanOnBoot = true; - - # 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 ]; boot.initrd.systemd.enable = true; boot.kernelParams = ["quiet"];