Skip to content

SergioRibera/s4rchiso-plymouth-theme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NixOS Boot Theme

image

Animated plymouth theme with NixOs logo and elegant look.

Install

Configurate plymouth

{ pkgs, ... }: let
    mac-style-src = pkgs.fetchFromGitHub {
      owner = "SergioRibera";
      repo = "s4rchiso-plymouth-theme";
      rev = "bc585b7f42af415fe40bece8192d9828039e6e20";
      sha256 = "sha256-yOvZ4F5ERPfnSlI/Scf9UwzvoRwGMqZlrHkBIB3Dm/w=";
    };
    mac-style-load = pkgs.callPackage mac-style-src {};
in {
  boot = {
    plymouth = {
      enable = true;
      theme = "mac-style";
      themePackages = [ mac-style-load ];
    };
  };
}

License

This project is licensed under the GPL v.2 License - see the LICENSE.md file for details

Acknowledgments