From 05facf399a47054087ac0e4910b904eb166e8b07 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Tue, 18 Jun 2024 21:49:25 +0200 Subject: [PATCH] enable plymouth --- hosts/default/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index eb69a43..7beae0a 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -16,6 +16,12 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + boot.plymouth = { + enable = true; + theme = "rings"; + themePackages = [ (pkgs.adi1090x-plymouth-themes.override { selected_themes = [ "rings" ]; }) ]; + }; + # LOVE me some blob hardware.enableRedistributableFirmware = true; hardware.enableAllFirmware = true;