From 3b13d9a2a367db84d48940460532c17a374bb488 Mon Sep 17 00:00:00 2001 From: schererleander Date: Thu, 5 Feb 2026 12:03:07 +0100 Subject: feat(modules): use dendritic pattern --- modules/system/plymouth.nix | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 modules/system/plymouth.nix (limited to 'modules/system/plymouth.nix') diff --git a/modules/system/plymouth.nix b/modules/system/plymouth.nix new file mode 100644 index 0000000..17ccddc --- /dev/null +++ b/modules/system/plymouth.nix @@ -0,0 +1,31 @@ +{ + flake.modules.nixos.plymouth = + { lib, pkgs, ... }: + { + boot = { + # Show password prompt for encrypted root + initrd.systemd.enable = true; + kernelParams = [ "quiet" ]; + loader.systemd-boot.consoleMode = "max"; + plymouth = { + enable = true; + theme = "loader_2"; + themePackages = with pkgs; [ + (adi1090x-plymouth-themes.override { + selected_themes = [ + #"lone" + #"red_loader" + #"cuts_alt" + #"abstract_ring_alt" + "loader_2" + #"sliced" + #"spinner_alt" + #"sphere" + #"loader" + ]; + }) + ]; + }; + }; + }; +} -- cgit v1.3.1