Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 552 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 552 Bytes

Nixos load plymouth theme

This is a very simple plymouth theme for nixos containing a static image of the nixos logo.

screenshot

Install

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";
  };
}