nixfiles/nixos/profiles/quiet-boot.nix
2025-07-13 05:10:57 -07:00

14 lines
234 B
Nix

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