From 7d756b36d90f56b1c4301e00b9f2b4a051543616 Mon Sep 17 00:00:00 2001 From: iFargle Date: Thu, 21 Sep 2023 22:25:30 +0900 Subject: [PATCH] reorg --- nixos/common/modules/bootloader.nix | 6 ++++++ nixos/common/modules/secureboot.nix | 7 ------- 2 files changed, 6 insertions(+), 7 deletions(-) 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