configuration.nix/system/plymouth.nix
2023-03-25 22:10:09 +05:30

14 lines
273 B
Nix

{pkgs, ...}: {
boot.consoleLogLevel = 3;
boot.kernelParams = ["quiet"];
boot.plymouth = {
enable = true;
themePackages = [
(pkgs.adi1090x-plymouth.override {
pack = "pack_3";
theme = "owl";
})
];
theme = "adi1090x";
};
}