Skip to content

paulchambaz/nixos-plymouth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Simple Nixos Plymouth theme

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages