configuration.nix/system/plymouth.nix

15 lines
277 B
Nix
Raw Normal View History

2023-03-29 21:48:55 +05:30
{ pkgs, ... }: {
2023-03-15 22:11:59 +05:30
boot.consoleLogLevel = 3;
2023-03-29 21:48:55 +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";
};
}