This is a very simple plymouth theme for nixos containing a static image of the nixos logo.
To install it, you would add this to your nixos configuration file :
let
nixos-load-src = pkgs.fetchFromGitHub {
owner = "paulchambaz";
repo = "nixos-plymouth";
rev = "main";
sha256 = "";
};
nixos-load = pkgs.callPackage nixos-load-src {};
in
{
boot.plymouth = {
enable = true;
themePackages = [ nixos-load ];
theme = "nixos-load";
};
}