some eyecandy
This commit is contained in:
parent
15c43836cb
commit
b90164559d
2 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
{ lib, pkgs, ... }: {
|
||||
boot.plymouth = let theme = "angular"; in {
|
||||
boot.plymouth = let theme = "dark_planet"; in {
|
||||
enable = true;
|
||||
themePackages = lib.mkDefault [
|
||||
(pkgs.adi1090x-plymouth-themes.override { selected_themes = [ theme ]; })
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
, ...
|
||||
}:
|
||||
let
|
||||
plymouth = let theme = "angular_alt"; in {
|
||||
plymouth = theme: {
|
||||
enable = true;
|
||||
themePackages = lib.mkForce [
|
||||
(pkgs.adi1090x-plymouth-themes.override { selected_themes = [ theme ]; })
|
||||
|
@ -18,7 +18,7 @@ in
|
|||
configuration = {
|
||||
boot = {
|
||||
kernelPackages = lib.mkForce pkgs.linuxPackages;
|
||||
inherit plymouth;
|
||||
plymouth = plymouth "spinner_alt";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -27,7 +27,7 @@ in
|
|||
configuration = {
|
||||
boot = {
|
||||
kernelPackages = lib.mkForce pkgs.linuxPackages_zen;
|
||||
inherit plymouth;
|
||||
plymouth = plymouth "flame";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue