configuration.nix/system/plymouth.nix

15 lines
273 B
Nix
Raw Normal View History

2023-03-25 22:10:09 +05:30
{pkgs, ...}: {
2023-03-15 22:11:59 +05:30
boot.consoleLogLevel = 3;
2023-03-25 22:10:09 +05:30
boot.kernelParams = ["quiet"];
2023-03-15 22:11:59 +05:30
boot.plymouth = {
enable = true;
2023-03-25 22:10:09 +05:30
themePackages = [
(pkgs.adi1090x-plymouth.override {
pack = "pack_3";
theme = "owl";
})
];
2023-03-15 22:11:59 +05:30
theme = "adi1090x";
};
}