Skip to content

SergioRibera/s4rchiso-plymouth-theme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NixOS Boot Theme

image

Animated plymouth theme with NixOs logo and elegant look.

Flake Install

Include in your flake.nix inputs:

inputs.mac-style-plymouth = {
  url = "github:SergioRibera/s4rchiso-plymouth-theme";
  inputs.nixpkgs.follows = "nixpkgs";
};

Apply the overlay (mac-style-plymouth.overlays.default) to nixpkgs, and enable plymouth as follows.

# in example
pkgs = import nixpkgs {
  overlays = [ inputs.mac-style-plymouth.overlays.default ];
};

Use Theme 🥳

boot = {
  plymouth = {
    enable = true;
    theme = "mac-style";
    themePackages = [ pkgs.mac-style-plymouth ];
  };
};

Legacy 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

About

Simple and elegants plymouth themes

Topics

Resources

License

Stars

Watchers

Forks

Contributors 3

  •  
  •  
  •