mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
23 lines
569 B
Nix
23 lines
569 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
# TODO: add https://github.com/FraioVeio/plymouth-xp-theme
|
|
boot.loader.timeout = 1;
|
|
boot.plymouth = {
|
|
enable = lib.mkDefault true;
|
|
themePackages = with pkgs; [
|
|
# By default we would install all themes
|
|
(adi1090x-plymouth-themes.override {
|
|
selected_themes = [ "lone" ];
|
|
# selected_themes = [ "sliced" ];
|
|
# selected_themes = [ "rings" ];
|
|
# selected_themes = [ "red_loader" ];
|
|
# selected_themes = [ "dna" ];
|
|
# selected_themes = [ "hexagon_dots" ];
|
|
})
|
|
];
|
|
};
|
|
}
|