nixfiles/nixos/profiles/quiet-boot.nix
2025-07-26 17:06:28 -07:00

14 lines
238 B
Nix

_: {
boot = {
plymouth = {
enable = true;
};
consoleLogLevel = 0;
kernelParams = ["quiet"];
initrd = {
verbose = false;
systemd.enable = true;
};
};
stylix.targets.plymouth.enable = true;
}