Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 782 Bytes

README.md

File metadata and controls

29 lines (26 loc) · 782 Bytes

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

Acknowledgments