some eyecandy

This commit is contained in:
Adithya 2024-06-03 00:02:22 +05:30
parent 15c43836cb
commit b90164559d
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
{ lib, pkgs, ... }: { { lib, pkgs, ... }: {
boot.plymouth = let theme = "angular"; in { boot.plymouth = let theme = "dark_planet"; in {
enable = true; enable = true;
themePackages = lib.mkDefault [ themePackages = lib.mkDefault [
(pkgs.adi1090x-plymouth-themes.override { selected_themes = [ theme ]; }) (pkgs.adi1090x-plymouth-themes.override { selected_themes = [ theme ]; })

View file

@ -3,7 +3,7 @@
, ... , ...
}: }:
let let
plymouth = let theme = "angular_alt"; in { plymouth = theme: {
enable = true; enable = true;
themePackages = lib.mkForce [ themePackages = lib.mkForce [
(pkgs.adi1090x-plymouth-themes.override { selected_themes = [ theme ]; }) (pkgs.adi1090x-plymouth-themes.override { selected_themes = [ theme ]; })
@ -18,7 +18,7 @@ in
configuration = { configuration = {
boot = { boot = {
kernelPackages = lib.mkForce pkgs.linuxPackages; kernelPackages = lib.mkForce pkgs.linuxPackages;
inherit plymouth; plymouth = plymouth "spinner_alt";
}; };
}; };
}; };
@ -27,7 +27,7 @@ in
configuration = { configuration = {
boot = { boot = {
kernelPackages = lib.mkForce pkgs.linuxPackages_zen; kernelPackages = lib.mkForce pkgs.linuxPackages_zen;
inherit plymouth; plymouth = plymouth "flame";
}; };
}; };
}; };