nixfiles/nixos/profiles/quiet-boot.nix

14 lines
242 B
Nix

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