nixos-configs/nixosModules/quiet-boot.nix

26 lines
499 B
Nix
Raw Normal View History

{ pkgs, ... }:
2025-09-14 14:01:42 +02:00
{
boot = {
kernelParams = [
"quiet"
"udev.log_level=3"
"udev.log_priority=3"
"rd.systemd.show_status=auto"
2025-09-14 14:01:42 +02:00
];
consoleLogLevel = 0;
initrd = {
verbose = false;
systemd.enable = true; # required fpr graphical LUKS prompt
};
plymouth = {
enable = true;
theme = "catppuccin-mocha";
themePackages = [
(pkgs.catppuccin-plymouth.override {
variant = "mocha";
})
];
};
2025-09-14 14:01:42 +02:00
};
}