feat(plymouth): implement custom hakase theme based on omarchy assets

This commit is contained in:
kenji
2026-01-05 13:20:54 -06:00
parent f1fede7cd5
commit ec1e9a9b59
10 changed files with 300 additions and 6 deletions
+15 -6
View File
@@ -17,14 +17,23 @@
initrd = {
systemd.enable = true;
};
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"loglevel=3"
"rd.systemd.show_status=false"
"rd.udev.log_level=3"
"udev.log_priority=3"
];
plymouth = {
enable = true;
# themePackages = [
# (pkgs.adi1090x-plymouth-themes.override {
# selected_themes = ["circle_hud"];
# })
# ];
# theme = "circle_hud";
themePackages = [
(pkgs.callPackage ../../apps/plymouth/theme.nix {})
];
theme = "hakase";
};
};
}